Created
April 30, 2019 18:58
-
-
Save zprima/ceb5ff946f404210b32a4a3e5d902060 to your computer and use it in GitHub Desktop.
medium_p5_c1
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": "Freshness", | |
"version": "1.0", | |
"description": "Fresh look at gmail", | |
"page_action": { | |
"default_icon": { | |
"16": "images/get_started16.png", | |
"32": "images/get_started32.png", | |
"48": "images/get_started48.png", | |
"128": "images/get_started128.png" | |
} | |
}, | |
"content_scripts": [ | |
{ | |
"matches": [ | |
"*://mail.google.com/mail/*" | |
], | |
"js": [ | |
"script.js" | |
], | |
"css": [ | |
"style.css" | |
], | |
"run_at": "document_end", | |
"all_frames": false | |
} | |
], | |
"background": { | |
"scripts": [ | |
"background.js" | |
], | |
"persistent": false | |
}, | |
"icons": { | |
"16": "images/get_started16.png", | |
"32": "images/get_started32.png", | |
"48": "images/get_started48.png", | |
"128": "images/get_started128.png" | |
}, | |
"manifest_version": 2, | |
"content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src 'self'; img-src 'self'" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment