Pangolin - Unit Price Comparison

Pangolin - Unit Price Comparison

Pangolin automatically calculates and sorts products by unit price (weight, volume, or count).

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Pangolin automatically calculates and sorts products by unit price (weight, volume, or count).",
  "version": "0.2.4",
  "name": "Pangolin - Unit Price Comparison",
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "32": "logo32.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "style.css",
    "logo128.png"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}