Select It

Select It

Select It make it easy to open text links or search Google by text selection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Select It make it easy to open text links or search Google by text selection.",
  "icons": {
    "128": "images/logo-128.png"
  },
  "name": "Select It",
  "options_page": "options.html",
  "permissions": [
    "tabs"
  ],
  "version": "1.0.10"
}