Microsoft Bing Search with Rewards

Microsoft Bing Search with Rewards

Use the Microsoft Rewards extension to find new ways to earn every day, easily track your points and set your default search to Bing

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "scripts": [
      "background.js",
      "ping.js",
      "notifications.js",
      "extensionTracking.js",
      "firstSearchNotificationBackground.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "favicon_url": "https://www.bing.com/favicon.ico",
      "is_default": true,
      "prepopulated_id": 3,
      "search_url": "https://www.bing.com/search?FORM=U523MF&PC=__PARAM__U523&q={searchTerms}",
      "suggest_url": "https://www.bing.com/osjson.aspx?FORM=U523DF&PC=__PARAM__U523&query={searchTerms}"
    }
  },
  "default_locale": "en",
  "description": "__MSG_RewardsDesc__",
  "externally_connectable": {
    "matches": [
      "https://www.bing.com/*",
      "https://browserdefaults.microsoft.com/*"
    ]
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_RewardsTitle__",
  "permissions": [
    "cookies",
    "http://*/*",
    "https://*/*",
    "management",
    "notifications",
    "alarms",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "__MSG_RewardsTitle__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.18",
  "web_accessible_resources": [
    "*.png"
  ]
}