Skip to content

Instantly share code, notes, and snippets.

@zprima
Created April 30, 2019 18:58
Show Gist options
  • Save zprima/ceb5ff946f404210b32a4a3e5d902060 to your computer and use it in GitHub Desktop.
Save zprima/ceb5ff946f404210b32a4a3e5d902060 to your computer and use it in GitHub Desktop.
medium_p5_c1
{
"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