P2H

P2H

Converting Amazon list price from dollar to work hours

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "P2H",
  "name": "P2H",
  "description": "Converting Amazon list price from dollar to work hours",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.amazon.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*"
      ],
      "css": [],
      "js": [
        "content-script.js"
      ]
    }
  ]
}