Gamers Tab

Gamers Tab

Gamers Tab Default Search

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gamers Tab",
  "description": "Gamers Tab Default Search",
  "version": "1.3",
  "manifest_version": 2,
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "release/browseraction_release.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "common/contentscript.js"
      ],
      "matches": [
        "*://*.gamerstab.xyz/*"
      ],
      "run_at": "document_end"
    }
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Gamers Tab",
      "keyword": "https://www.gamerstab.xyz",
      "search_url": "https://www.gamerstab.xyz/sapi/search.php?q={searchTerms}&src=dsgames1&ssrc=ds",
      "search_url_post_params": "",
      "favicon_url": "https://www.gamerstab.xyz/favicon.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "browser_action": {
    "default_icon": "img/logo_128x.png",
    "default_title": "Gamers Tab"
  },
  "icons": {
    "16": "img/logo_16x.png",
    "48": "img/logo_48x.png",
    "128": "img/logo_128x.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}