Instant Search

Instant Search

Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Instant Search",
  "version": "1.0.1.2",
  "description": "Instant google serarch from the current page. Highlight the text and click the search icon. Search results will be shown in a popup.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://*/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "searchup.css"
      ],
      "js": [
        "searchup.js"
      ]
    }
  ]
}