PORTICO - Better Online Shopping

PORTICO - Better Online Shopping

Browse multiple stores with just a click. Easily find the listing with the lowest price.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PORTICO - Better Online Shopping",
  "description": "Browse multiple stores with just a click. Easily find the listing with the lowest price.",
  "version": "1.0.19",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "content_security_policy": "worker-src blob: 'self' https://cdn.jsdelivr.net; script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules' http://localhost:* http://127.0.0.1:* https://cdn.jsdelivr.net; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "extension_ids": []
    }
  ]
}