Games Search for Chrome™

Games Search for Chrome™

Quick access in the autocomplete suggestions to search for online games on gaming sites, directly from your Chrome’s address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Games Search for Chrome™",
  "short_name": "Games Search for Chrome™",
  "version": "3.0.4",
  "homepage_url": "https://www.games-search.net/wim/gotohub?s=zods",
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://www.games-search.net/favicon.ico",
      "is_default": true,
      "name": "Games Search for Chrome™",
      "keyword": "Games Search for Chrome™",
      "search_url": "https://www.games-search.net/search/?category=web&s=zods&vert=games&q={searchTerms}",
      "suggest_url": "https://sug.games-search.net/v1/sug/?yid=zods&vert=games&q={searchTerms}"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Games Search for Chrome™",
    "default_icon": "/img/icon16.png",
    "default_popup": "/popup/popup.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.games-search.net/*"
      ],
      "js": [
        "content_script/contentScript.js"
      ]
    }
  ],
  "description": "Quick access in the autocomplete suggestions to search for online games on gaming sites, directly from your Chrome’s address bar.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "cookies",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*.games-search.net/"
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "img/icon16.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}