Tab Searching

Tab Searching

Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Searching",
  "version": "0.3.4",
  "manifest_version": 2,
  "icons": {
    "128": "tab-searching.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:8080; object-src 'self'",
  "permissions": [
    "tabs",
    "history",
    "bookmarks",
    "chrome://favicon/",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "js/*",
    "css/*",
    "coffee/*"
  ],
  "browser_action": {
    "default_icon": "tab-searching.png"
  },
  "commands": {
    "launch": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Period"
      },
      "description": "Launch my searching tool"
    }
  }
}