ShortTabs

ShortTabs

Keep your Google Chrome browsing in one tab!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "browsingData",
    "activeTab",
    "webRequest",
    "notifications",
    "tabs",
    "storage",
    "*://code.jquery.com/*",
    "*://cdnjs.cloudflare.com/*"
  ],
  "browser_action": {
    "default_icon": "assets/icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScripts/contentScripts.js"
      ],
      "html": [
        "contentScripts/index.html"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background/background.js",
      "background/messages.js"
    ]
  },
  "icons": {
    "48": "assets/icons/icon.png"
  },
  "manifest_version": 2
}