Shopperman

Shopperman

This extension rounds up the prices you see while doing online shopping.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shopperman",
  "description": "This extension rounds up the prices you see while doing online shopping.",
  "version": "1.0.2",
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "myscript.js"
      ]
    }
  ]
}