Created
          September 12, 2016 12:16 
        
      - 
      
 - 
        
Save rcdelfin/78d6facff1384bd55fd4ff57eb8b6b15 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
rcdelfin created this gist
Sep 12, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,48 @@ { "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" ] } ] }