Examine source code of Amazoncito

Inspect and view changes in Amazoncito source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Amazoncito",
  "version": "1.1",
  "description": "Convierte los precios de Amazon en USD a pesos argentinos usando la tasa de cambio del dólar MEP o tarjeta.",
  "icons": {
    "128": "public/iconos/icon.png"
  },
  "browser_action": {
    "default_popup": "",
    "default_icon": {
      "16": "public/iconos/icon16.png",
      "48": "public/iconos/icon48.png",
      "128": "public/iconos/icon128.png"
    }
  },
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "dist/content.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "https://dolarapi.com/*"
  ],
  "web_accessible_resources": [
    "public/iconos/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{85f3b81c-5cf3-408a-9e47-69d1fc83afa3}"
    }
  }
}