Price.99

Price.99

Round up prices automatically to avoid psychological pricing, reduce clutter, and make easy comparisons.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Price.99",
  "description": "Round up prices automatically to avoid psychological pricing, reduce clutter, and make easy comparisons.",
  "version": "0.1.1.44",
  "default_locale": "en",
  "icons": {
    "128": "images/i_128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "images/i_19.png",
      "38": "images/i_38.png"
    },
    "default_title": "Price.99",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/pricepoint.min.css"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "options_page": "html/options.html",
  "devtools_page": "html/devtools.html",
  "web_accessible_resources": [
    "js/*",
    "html/*",
    "css/*",
    "images/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}