Hide Tab

Hide Tab

Hide your browser tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "0.0.3",
  "description": "__MSG_description__",
  "default_locale": "en",
  "author": "[email protected]",
  "browser_action": {
    "default_icon": "images/icons/icon48.png",
    "default_title": "HideTab"
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Alt+Q"
      },
      "description": "Toggle Hide/Show"
    }
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "images/favicon.ico",
    "images/default.ico"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": []
}