Find That Tab

Find That Tab

Find that tab you're looking for with just a few keystrokes, reduce tab clutter and be more productive

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_appName__",
  "version": "1.0.8",
  "author": "Benedikt Reiser",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png",
    "512": "images/icon-512.png",
    "1024": "images/icon-1024.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "images/icon-16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "popup-find-that-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      },
      "description": "Find That Tab Popup (faster than \"Activate the extension\")"
    }
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ]
}