Last active
January 8, 2016 20:28
-
-
Save brookslyrette/0a3681a75ebae6fc6311 to your computer and use it in GitHub Desktop.
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": "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