Rewards Search Automator

Rewards Search Automator

Effortlessly Earn Microsoft Rewards Points with a Single Click to Automate your Bing Searches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Kartikey Tiwari - GetProjets",
  "name": "Rewards Search Automator",
  "version": "1.4.9",
  "description": "Effortlessly Earn Microsoft Rewards Points with a Single Click to Automate your Bing Searches",
  "icons": {
    "16": "/ico/16.png",
    "32": "/ico/32.png",
    "48": "/ico/48.png",
    "128": "/ico/128.png",
    "256": "/ico/256.png",
    "512": "/ico/bing.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/ico/16.png",
      "32": "/ico/32.png",
      "48": "/ico/48.png",
      "128": "/ico/128.png",
      "256": "/ico/256.png",
      "512": "/ico/bing.png"
    }
  },
  "background": {
    "service_worker": "js/sw.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bing.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "debugger",
    "alarms",
    "tabs",
    "storage",
    "webRequest",
    "webNavigation",
    "browsingData"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}