Stock Clock

Stock Clock

A stock price tracker with built-in browser notifications for your set prices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stock Clock",
  "version": "1.0.1",
  "description": "A stock price tracker with built-in browser notifications for your set prices.",
  "permissions": [
    "management",
    "storage",
    "activeTab",
    "notifications",
    "https://cloud.iexapis.com/",
    "https://sandbox.iexapis.com/",
    "https://kit.fontawesome.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "16": "public/images/logo16.png",
      "32": "public/images/logo32.png",
      "48": "public/images/logo48.png",
      "128": "public/images/logo128.png"
    }
  },
  "icons": {
    "16": "public/images/logo16.png",
    "32": "public/images/logo32.png",
    "48": "public/images/logo48.png",
    "128": "public/images/logo128.png"
  },
  "manifest_version": 2
}