Pie Rewards Browser Extension

Pie Rewards Browser Extension

Earn investments as you shop!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "short_name": "Pie Rewards Browser Extension",
  "name": "Pie Rewards Browser Extension",
  "description": "Earn investments as you shop!",
  "version": "1.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "48": "logo_48.png",
    "128": "logo_128.png",
    "196": "logo_196.png"
  },
  "permissions": [
    "activeTab",
    "webNavigation",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "index.html",
        "assets/images/*",
        "js/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "css": [
        "contentScript.css"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}