Hightlight to Search Faster

Hightlight to Search Faster

Quicker and simpler than the Google's official extension! Select a word then click a button to open a results page on Google. Any…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hightlight to Search Faster",
  "version": "0.0.2",
  "icons": {
    "38": "images/icon38.png",
    "48": "images/icon48.png"
  },
  "browser_action": {
    "default_title": "Faster Highlight to Search",
    "default_icon": "images/icon38.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "contentscript.css"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}