Power Search for Chrome

Power Search for Chrome

Optimized search results powered by Yahoo!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.2",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "homepage_url": "https://www.searchinchrome.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "Power Search for Chrome",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "alarms",
    "contextMenus",
    "tabs",
    "storage",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "*://*.searchinchrome.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.searchinchrome.com/*",
        "https://*.searchinchrome.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/utils.js",
        "js/constants.js",
        "js/attribution.js",
        "js/powersearch.js"
      ],
      "all_frames": true
    }
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "SearchInChrome",
      "keyword": "searchinchrome.com",
      "favicon_url": "https://searchinchrome.com/images/favicon.ico",
      "search_url": "https://searchinchrome.com/search?q={searchTerms}&aid=59&sb=1",
      "suggest_url": "https://searchinchrome.com/ss?q={searchTerms}",
      "image_url": "https://searchinchrome.com/search?q={searchTerms}&tbm=isch&aid=59",
      "encoding": "UTF-8",
      "is_default": true
    }
  }
}