Xbox New Tab

Xbox New Tab

Stay connected with Xbox in your browser with this official extension from Microsoft.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "notifications.js",
      "onMessage.js",
      "ping.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png"
    }
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "is_default": true,
      "prepopulated_id": 1,
      "search_url": "https://www.bing.com/search?FORM=U549DF&PC=U549&q={searchTerms}",
      "suggest_url": "{bing:baseURL}qbox?query={searchTerms}&language={language}&PC=U549&{bing:partner}{bing:cvid}{bing:ig}{google:inputType}{google:cursorPosition}{google:pageClassification}{bing:features}{bing:flights}"
    }
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "default_locale": "en",
  "description": "__MSG_ExtensionDescription__",
  "externally_connectable": {
    "matches": [
      "https://*.bing.com/*",
      "https://*.microsoft.com/*",
      "https://*.msn.com/*"
    ]
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_ExtensionName__",
  "optional_permissions": [
    "topSites",
    "chrome://favicon/"
  ],
  "permissions": [
    "cookies",
    "https://*.bing.com/*",
    "https://*.microsoft.com/*",
    "https://*.msn.com/*",
    "management",
    "notifications",
    "tabs",
    "storage"
  ],
  "short_name": "__MSG_ExtensionShortName__",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "0.0.0.18"
}