Tab Finder - by floverdevel

Tab Finder - by floverdevel

Find and navigate to an opened tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Finder - by floverdevel",
  "short_name": "tabfindercrx",
  "version": "1.0.0",
  "minimum_chrome_version": "27.0.1453.110",
  "manifest_version": 2,
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Space",
        "mac": "MacCtrl+Space",
        "chromeos": "Ctrl+Space",
        "linux": "Ctrl+Space"
      }
    }
  },
  "description": "Find and navigate to an opened tab",
  "icons": {
    "16": "resources/icon_16.png",
    "32": "resources/icon_32.png",
    "64": "resources/icon_64.png",
    "128": "resources/icon_128.png"
  },
  "browser_action": {
    "default_icon": "resources/icon_128.png",
    "default_title": "Find and navigate to an opened tab",
    "default_popup": "application.html"
  },
  "permissions": [
    "tabs"
  ]
}