Detab - Detach new tabs upon creation

Detab - Detach new tabs upon creation

Detaches tabs whenever they are created

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Detab - Detach new tabs upon creation",
  "short_name": "Detab",
  "version": "0.1.3",
  "manifest_version": 2,
  "description": "Detaches tabs whenever they are created",
  "homepage_url": "http://tasinet.gr/chrome/detab",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/options_custom/lib/store.js",
      "src/bg/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs"
  ],
  "commands": {
    "toggle-popup-mode": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "Show/hide toolbars"
    }
  },
  "options_page": "src/options_custom/index.html"
}