Fast Tabs

Fast Tabs

Save time, improve work efficiency! 'Fast Tabs' can help you quickly find a specific page when you have many tabs open.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "core/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/fast_tabs.png",
    "default_title": "Fast Tabs",
    "default_popup": "core/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "core/changecapture.js"
      ]
    }
  ],
  "icons": {
    "16": "img/fast_tabs16.png",
    "32": "img/fast_tabs32.png",
    "48": "img/fast_tabs48.png",
    "128": "img/fast_tabs128.png"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "name": "__MSG_extname__",
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "unlimitedStorage"
  ],
  "version": "1.0.6"
}