Bitsgap watchlists

Bitsgap watchlists

Allows to create multiple watchlists in the bitsgap application. Navigate the markets and your portfolio x100 easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bitsgap watchlists",
  "action": {},
  "manifest_version": 3,
  "version": "1.1",
  "description": "Allows to create multiple watchlists in the bitsgap application. Navigate the markets and your portfolio x100 easier.",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://app.bitsgap.com/*"
      ],
      "js": [
        "content-script.js",
        "backend/database.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://app.bitsgap.com/*"
      ],
      "resources": [
        "frontend/*"
      ]
    }
  ]
}