Search Plus

Search Plus

The Search Plus can find the tabs you're looking for from all opened tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Search Plus",
  "version": "0.8",
  "manifest_version": 2,
  "description": "The Search Plus can find the tabs you're looking for from all opened tabs.",
  "content_security_policy": "script-src 'self' https://apis.google.com https://connect.facebook.net; object-src 'none'",
  "homepage_url": "https://chrome.google.com/webstore/detail/cdpohbejnbclggljmoijjcpdhbaaijfm",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "default_locale": "en",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "img/icon-16.png",
    "default_title": "Search Plus",
    "default_popup": "html/popup_tempo.html"
  },
  "options_page": "html/options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ]
}