Microsoft Shopping Assistant

Microsoft Shopping Assistant

Your smart shopping cart across the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "PSA",
  "background": {
    "page": "Background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/icon-blue-16.png",
      "20": "assets/icon-blue-20.png",
      "32": "assets/icon-blue-32.png",
      "40": "assets/icon-blue-40.png",
      "48": "assets/icon-blue-48.png",
      "128": "assets/icon-blue-128.png"
    },
    "default_title": "Microsoft Shopping Assistant"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "stub.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "extensionDetector.js"
      ],
      "matches": [
        "*://psawebapi-dev.azurewebsites.net/*",
        "*://psa.microsoft.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "include_globs": [
        "*://*/*#ms-psa-bg-extraction-iframe"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "assets/icon-blue-16.png",
    "48": "assets/icon-blue-48.png",
    "128": "assets/icon-blue-128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extension_name_msft__",
  "short_name": "PSA",
  "default_locale": "en",
  "permissions": [
    "topSites",
    "tabs",
    "cookies",
    "http://*/",
    "https://*/",
    "alarms",
    "history",
    "storage",
    "unlimitedStorage",
    "notifications",
    "activeTab",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "webNavigation"
  ],
  "version": "3000.2016.40.0",
  "web_accessible_resources": [
    "*.js",
    "*.css",
    "*.html"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}