Vanish

Vanish

A css/js modifier to instantly vanish your webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vanish",
  "description": "A css/js modifier to instantly vanish your webpage",
  "version": "0.0.0.3",
  "browser_action": {
    "default_icon": "src/resources/img/icon.png",
    "default_title": "Vanish"
  },
  "icons": {
    "16": "src/resources/img/icon16.png",
    "48": "src/resources/img/icon48.png",
    "128": "src/resources/img/icon128.png"
  },
  "background": {
    "scripts": [
      "src/js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "src/css/cssBox.css"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "Command+Shift+8",
        "windows": "Ctrl+Shift+8"
      }
    }
  }
}