Skip to content

Commit

Permalink
chore(manifest): remove redundant permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
bolshchikov committed Apr 19, 2024
1 parent 36f60c7 commit 2d84cec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ npm-debug.log
node_modules/
dist/
tmp/
.DS_Store
.DS_Store
**/*.zip
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"pack": "cd dist && zip -vr send-whatsapp.zip . -x \"*.DS_Store\""
},
"author": "",
"license": "MIT",
Expand Down
Binary file added public/icon_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 3 additions & 7 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"default_popup": "popup.html"
},
"icons": {
"48": "icon.png",
"128": "icon.png",
"48": "icon_128.png",
"128": "icon_128.png",
"256": "icon.png"
},
"content_scripts": [
Expand All @@ -30,10 +30,6 @@
"service_worker": "js/background.js"
},
"permissions": [
"contextMenus",
"activeTab"
],
"host_permissions": [
"<all_urls>"
"contextMenus"
]
}

0 comments on commit 2d84cec

Please sign in to comment.