Tab.Domainator

Tab.Domainator

Extension that allows you to see your open tabs in a tree of domains, and quickly close or navigate to them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab.Domainator",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Extension that allows you to see your open tabs in a tree of domains, and quickly close or navigate to them",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "name": "Click to open the extension sidebar"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "*://*/*"
  ],
  "web_accessible_resources": [
    "src/page-sidebar/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}