Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

policy: remove unnecessary permissions #53

Merged
merged 2 commits into from
Aug 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 1 addition & 8 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
"manifest_version": 3,
"name": "Pint for GitHub",
"version": "2.0",

"icons": {
"16": "pint-logo.png",
"48": "pint-logo.png",
"128": "pint-logo.png"
},

"action": {
"default_icon": {
"16": "pint-logo.png",
Expand All @@ -18,16 +16,12 @@
"default_title": "Pint for GitHub",
"default_popup": "index.html"
},

"description": "Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.",

"author": {
"name": "Jariel Que",
"url": "https://github.com/fuwaa"
},

"host_permissions": ["https://*.github.com/"],

"content_scripts": [
{
"run_at": "document_start",
Expand All @@ -47,8 +41,7 @@
"js": ["initial.js"]
}
],

"permissions": ["storage", "scripting", "tabs"],
"permissions": ["storage", "scripting"],
"background": {
"service_worker": "background.js"
},
Expand Down