Quick tab search

Quick tab search

Search for tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "Search for tab",
  "version": "1.8",
  "default_locale": "en",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ],
      "css": [
        "src/content.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/punycode.min.js",
      "src/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "showUI": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "__MSG_hotKeyDesc__"
    }
  },
  "web_accessible_resources": [
    "img/chrome-icon.png",
    "img/cross-small.png",
    "img/page-white.png"
  ]
}