Time As Money

Time As Money

See prices as measures of time with respect to your hourly wage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Time As Money",
  "description": "See prices as measures of time with respect to your hourly wage.",
  "version": "1.0",
  "author": "Vivek Bhookya",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Time As Money",
    "default_icon": {
      "16": "/icons/timeAsMoney.png",
      "48": "/icons/timeAsMoney.png",
      "128": "/icons/timeAsMoney.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "/icons/timeAsMoney.png",
    "48": "/icons/timeAsMoney.png",
    "128": "/icons/timeAsMoney.png"
  }
}