Tab Permissions

Tab Permissions

control contents permissions per tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tab Permissions",
  "description": "control contents permissions per tab",
  "version": "2019.2.26.3resigned1",
  "homepage_url": "https://github.com/matsuin/tabperm",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "65.0"
    }
  },
  "icons": {
    "48": "icons/1.svg"
  },
  "browser_action": {
    "default_title": "Tab Permissions",
    "browser_style": true,
    "default_icon": "icons/1.svg",
    "theme_icons": [
      {
        "light": "icons/1.svg",
        "dark": "icons/1.svg",
        "size": 32
      }
    ],
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "script/background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "menus",
    "sessions",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ]
}