Gogetme Search

Gogetme Search

Quick search by select keyword string then single click, save a right-click time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gogetme Search",
  "short_name": "Gogetme Search",
  "description": "Quick search by select keyword string then single click, save a right-click time",
  "version": "1.1.2",
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*",
    "script/*",
    "fonts/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "icons": {
    "48": "images/63x63.jpg"
  },
  "browser_action": {
    "default_title": "Gogetme - press to options."
  },
  "manifest_version": 2
}