FutureBucks: Opportunity Cost Calculator

FutureBucks: Opportunity Cost Calculator

When you're about to buy something, learn how much you could make if you instead added the money to an index fund.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "/icons/ext-grey.png",
      "48": "/icons/ext.png",
      "128": "/icons/ext.png"
    },
    "default_title": "FutureBucks: Opportunity Cost Calculator"
  },
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "content_scripts": [
    {
      "css": [
        "css/content.css"
      ],
      "js": [
        "libs/jquery-3.1.1.min.js",
        "contentscript/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "html/option.html",
  "description": "When you're about to buy something, learn how much you could make if you instead added the money to an index fund.",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "/icons/ext.png",
    "48": "/icons/ext.png",
    "128": "/icons/ext.png"
  },
  "manifest_version": 3,
  "name": "FutureBucks: Opportunity Cost Calculator",
  "permissions": [
    "storage"
  ],
  "version": "1.0.1",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "icons/*",
        "images/*",
        "html/*",
        "js/*"
      ]
    }
  ]
}