Created
September 12, 2016 12:16
-
-
Save rcdelfin/78d6facff1384bd55fd4ff57eb8b6b15 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
| { | |
| "name": "Virtually Replaced Tool", | |
| "version": "1.1.6", | |
| "manifest_version": 2, | |
| "description": "VirtuallyReplaced Extension", | |
| "homepage_url": "https://virtuallyreplaced.com/", | |
| "icons": { | |
| "16": "assets/icons/icon16.png", | |
| "48": "assets/icons/icon48.png", | |
| "128": "assets/icons/icon128.png" | |
| }, | |
| "default_locale": "en", | |
| "background": { | |
| "scripts": ["assets/js/background.js"], | |
| "persistent": true | |
| }, | |
| "browser_action": { | |
| "default_icon": "assets/icons/icon19.png", | |
| "default_title": "Virtually Replaced" | |
| // "default_popup": "views/popup.html" | |
| }, | |
| "permissions": [ | |
| "background", | |
| "idle", | |
| "notifications", | |
| "cookies", | |
| "tabs", | |
| "activeTab", | |
| "storage", | |
| "http://*/*", | |
| "https://*/*" | |
| ], | |
| "content_scripts": [ | |
| { | |
| "matches": ["http://*/*", "https://*/*"], | |
| "css": [ | |
| "inject/inject.css" | |
| ] | |
| }, | |
| { | |
| "matches": ["http://*/*", "https://*/*"], | |
| "js": [ | |
| "inject/inject.js" | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment