Created
April 27, 2020 08:27
-
-
Save smolinari/7985df9ef2da4f72146b57367aa521e5 to your computer and use it in GitHub Desktop.
Quasar to-do app browser extension example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "quasar-todo-extension", | |
"description": "A Quasar web browser extension for bookmarking and adding todos.", | |
"version": "1.0.0", | |
"manifest_version": 2, | |
"icons": { | |
"16": "icons/icon16x16.png", | |
"48": "icons/icon48x48.png", | |
"128": "icons/icon128x128.png" | |
}, | |
"browser_action": { | |
"default_title": "quasar-todo-extension" | |
}, | |
"background": { | |
"scripts": [ | |
"www/bex-background.js", | |
"js/background.js" | |
], | |
"persistent": true | |
}, | |
"content_scripts": [{ | |
"matches": ["<all_urls>"], | |
"js": [ | |
"www/bex-content-script.js", | |
"js/content-script.js" | |
], | |
"css": [ | |
"css/content-css.css" | |
] | |
}], | |
"permissions": [ | |
"<all_urls>", | |
"storage", | |
"tabs", | |
"activeTab" | |
], | |
"web_accessible_resources": [ | |
"www/*", | |
"js/*", | |
"css/*", | |
"<all_urls>" | |
], | |
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment