Created
November 13, 2017 16:33
-
-
Save walbinjr/b49b8b1534ad9ec04322c6df10a83091 to your computer and use it in GitHub Desktop.
Medium - manifest chrome
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
{ | |
"manifest_version": 2, | |
"name": "Time to go!", | |
"description": "Calcule a hora de ir embora!", | |
"version": "4.0", | |
"icons": { | |
"16": "assets/icon.png", | |
"48": "assets/icon.png", | |
"128": "assets/icon.png" | |
}, | |
"browser_action": { | |
"default_icon": "assets/icon.png", | |
"default_popup": "index.html" | |
}, | |
"background": { | |
"scripts": ["background.js"] | |
}, | |
"web_accessible_resources": [ | |
"assets/css/*", | |
"assets/js/*", | |
"assets/fonts/*" | |
], | |
"permissions": [ | |
"notifications" | |
], | |
"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