Skip to content

Instantly share code, notes, and snippets.

@rcdelfin
Created September 12, 2016 12:16
Show Gist options
  • Save rcdelfin/78d6facff1384bd55fd4ff57eb8b6b15 to your computer and use it in GitHub Desktop.
Save rcdelfin/78d6facff1384bd55fd4ff57eb8b6b15 to your computer and use it in GitHub Desktop.

Revisions

  1. rcdelfin created this gist Sep 12, 2016.
    48 changes: 48 additions & 0 deletions VR-tool Chrome panel
    Original 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"
    ]
    }
    ]
    }