Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
################################################################################
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
################################################################################

/.vs/Extention/FileContentIndex/10121bdc-6315-4f6e-94ac-fd1a46abeb7f.vsidx
/.vs/Extention/FileContentIndex/10c93d41-d82c-482f-a617-105e967bc9de.vsidx
/.vs/Extention/FileContentIndex/55fe423a-ecf3-4840-ab4e-afdab2848472.vsidx
/.vs/Extention/FileContentIndex/723f158e-1cf4-42c2-aa54-e36f7b80a1e1.vsidx
/.vs/Extention/FileContentIndex/f52f8634-b0ca-4955-83a4-e0d437f71198.vsidx
/.vs/slnx.sqlite
*.vsidx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/Extention/v17/.suo
Binary file not shown.
Binary file removed .vs/slnx.sqlite
Binary file not shown.
19 changes: 11 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Download Manager",
"version": "1.0.2.2",
"manifest_version": 2,
"version": "2.0.0.0",
"manifest_version": 3,
"description": "Download Manager browser extension to download files.",
"icons": {
"16": "icons/icon.png",
Expand All @@ -10,17 +10,20 @@
"128": "icons/icon.png"
},
"permissions":[
"webRequest",
"webRequestBlocking",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"<all_urls>",
"storage",
"contextMenus",
"tabs"
],
"browser_action": {
"default_popup": "popup/popup.html"
"host_permissions": [
"*://*.*.*/*.zip"
],
"background": {
"service_worker": "background.js"
},
"background":{
"scripts": ["scripts/background.js"]
"action": {
"default_popup": "popup/popup.html"
}
}
Loading