MSN Homepage, New Tab and Bing Search Engine

MSN Homepage, New Tab and Bing Search Engine

Set MSN as your homepage and new tab, and Bing as your search engine

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_ExtnName__",
  "version": "1.0.0.5",
  "default_locale": "en",
  "description": "__MSG_Description__",
  "applications": {
    "gecko": {
      "strict_min_version": "55.0",
      "id": "{7e39f3c8-2ef5-46ea-80d0-f8b8f72541c5}"
    }
  },
  "icons": {
    "16": "Logo.png",
    "48": "Logo_48.png",
    "128": "Logo_128.png"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Bing",
      "search_url": "https://www.bing.com/search?FORM=U482DF&PC=U482&q={searchTerms}",
      "keyword": "bing.com",
      "favicon_url": "https://www.bing.com/favicon.ico",
      "suggest_url": "https://www.bing.com/osjson.aspx?FORM=U482DF&PC=U482&query={searchTerms}",
      "is_default": true
    },
    "homepage": "https://www.msn.com/?pc=U482&ocid=U482DHP"
  },
  "chrome_url_overrides": {
    "newtab": "iframe_msn.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "management",
    "https://*.bing.com/*",
    "https://*.msn.com/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": "Logo_48.png"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/Ping.js"
    ]
  }
}