spotlight-tab

spotlight-tab

spotlight like search for chrome tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "spotlight-tab",
  "version": "0.0.3",
  "author": "Neil Ding",
  "description": "spotlight like search for chrome tabs",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "spotlight-tab-content.js"
      ],
      "css": [
        "spotlight-tab-content.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "spotlight-tab-background.js"
    ]
  },
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}