CoinDropster

Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "CoinDropster",
  "short_name": "CoinDropster",
  "version": "1.0.0",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "128": "icons/icon.png"
    },
    "default_title": "CoinDropster"
  },
  "icons": {
    "128": "icons/icon.png"
  },
  "background": {
    "service_worker": "js/service_worker.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "popup.html"
  },
  "permissions": [
    "sidePanel",
    "storage",
    "declarativeNetRequest",
    "alarms"
  ],
  "host_permissions": [
    "https://cryptorank.io/*",
    "https://api.cryptorank.io/*",
    "https://coindropster.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules-1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}