Skip to content

Commit

Permalink
fix: duplicate menu id
Browse files Browse the repository at this point in the history
  • Loading branch information
krau committed Jul 19, 2024
1 parent b0f521f commit 80a2b4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gopeed",
"version": "0.3.1",
"version": "0.3.2",
"description": "A Chrome Extension for Gopeed",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Gopeed",
"version": "0.3.1",
"version": "0.3.2",
"description": "Gopeed download manager",
"icons": {
"16": "icons/icon_16.png",
Expand Down
2 changes: 1 addition & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ chrome.downloads.onDeterminingFilename.addListener(async function (item) {
});

chrome.contextMenus.create({
id: 'createTask',
id: Math.random().toString(),
title: '使用Gopeed下载',
contexts: ['link', 'image', 'video', 'audio'],
});
Expand Down

0 comments on commit 80a2b4c

Please sign in to comment.