Skip to content

Instantly share code, notes, and snippets.

@brookslyrette
Last active January 8, 2016 20:28
Show Gist options
  • Select an option

  • Save brookslyrette/0a3681a75ebae6fc6311 to your computer and use it in GitHub Desktop.

Select an option

Save brookslyrette/0a3681a75ebae6fc6311 to your computer and use it in GitHub Desktop.
{
"manifest_version": 2,
"name": "Yet another XKCD substitutions chome extension",
"description": "Making everyday browsing a bit more fun",
"version": "1.0",
"browser_action": {
"default_icon": "/img/icon.png",
"default_title": "XKCD Substitutions"
},
"background": {
"scripts": ["/js/background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_idle",
"js": ["/js/substitutions.js"]
}
],
"permissions": [
"activeTab",
"storage",
"background"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment