StockEye

StockEye

This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StockEye",
  "description": "This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.",
  "version": "3.07",
  "options_page": "options.html",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Stock Eye"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "alarms"
  ],
  "host_permissions": [
    "https://ajax.googleapis.com/",
    "https://matches-stockeye-new.azurewebsites.net/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/bootstrap.css",
        "css/popup.css",
        "css/options.css",
        "js/jquery.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'wasm-unsafe-eval'; script-src 'self'; connect-src https://matches-stockeye-new.azurewebsites.net;"
  }
}