Tab Finder

Tab Finder

Find by opened tabs just typing any word.

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": "__MSG_extDescription__",
  "short_name": "__MSG_extShortName__",
  "version": "0.0.1",
  "author": "Adriano Chambel M. de Lima <[email protected]>",
  "homepage_url": "https://github.com/achambel/tab-finder",
  "minimum_chrome_version": "55",
  "default_locale": "en",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_extDefaultTitle__",
    "default_popup": "popup.html"
  },
  "commands": {
    "open-query-form": {
      "suggested_key": {
        "default": "Ctrl+Shift+9"
      },
      "description": "__MSG_extDefaultTitle__",
      "global": true
    }
  },
  "icons": {
    "16": "img/16x16.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}