Avocado Pricing

Avocado Pricing

This extension represents all prices in your browser in terms of no. of avocado toasts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Avocado Pricing",
  "short_name": "avo-pricing",
  "description": "This extension represents all prices in your browser in terms of no. of avocado toasts",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "popup.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  }
}