Score App - Save without sacrificing privacy.

Score App - Save without sacrificing privacy.

Score searches 10,000 retailers to save you money, all while protecting your privacy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Score searches 10,000 retailers to save you money, all while protecting your privacy.",
  "version": "2.0.2",
  "manifest_version": 3,
  "name": "Score App - Save without sacrificing privacy.",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "webRequest"
  ],
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/img/icon-128.png"
  },
  "icons": {
    "16": "assets/img/icon-16.png",
    "32": "assets/img/icon-32.png",
    "48": "assets/img/icon-48.png",
    "128": "assets/img/icon-128.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.font.css",
        "content.styles.css",
        "main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.font.css",
        "content.styles.css",
        "main.css",
        "assets/img/amazon-3-stars.png",
        "assets/img/amazon-3.5-stars.png",
        "assets/img/amazon-4-stars.png",
        "assets/img/amazon-4.5-stars.png",
        "assets/img/amazon-5-stars.png",
        "assets/img/green-checkmark.png",
        "assets/img/grippy.png",
        "assets/img/red-cross.png",
        "assets/img/scorelogo.png",
        "assets/img/scorepro-logo.png",
        "assets/img/loading-spinner.gif",
        "assets/img/score-hover-button.png",
        "assets/img/cross-x.png",
        "assets/img/ellipsis.png",
        "assets/img/filter.png",
        "assets/img/green-toast.png",
        "assets/img/chevron.png",
        "assets/am.json",
        "assets/filtered_100000_ranked_20077.json",
        "*.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.getscore.app/*",
      "*://localhost/*"
    ]
  }
}