BlockBeat Price Peek

BlockBeat Price Peek

View real-time crypto prices by hovering over Twitter $Cashtags and #Hashtags in anyones Tweets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BlockBeat Price Peek",
  "description": "View real-time crypto prices by hovering over Twitter $Cashtags and #Hashtags in anyones Tweets",
  "version": "1.0.11",
  "manifest_version": 3,
  "host_permissions": [
    "https://*.twitter.com/*",
    "https://*.crypto.com/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "run_at": "document_start"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://*.crypto.com/*"
      ],
      "js": [
        "./contentScript.js"
      ],
      "css": [
        "content/css/token-card.css",
        "content/css/hovercard.css",
        "content/css/animate.min.css",
        "content/css/three-dots.min.css",
        "content/css/token-card.css",
        "content/css/custom.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "alarms",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "content/html/*",
        "content/css/*",
        "card/images/*",
        "fonts/*",
        "content/main/page_context/*"
      ],
      "matches": [
        "https://*.twitter.com/*",
        "https://*.crypto.com/*"
      ]
    }
  ],
  "incognito": "spanning",
  "icons": {
    "16": "./images/blockbeat.png",
    "32": "./images/blockbeat.png",
    "48": "./images/blockbeat.png",
    "128": "./images/blockbeat.png"
  },
  "action": {
    "default_icon": {
      "16": "images/blockbeat.png"
    },
    "default_title": "BlockBeat Price Peek",
    "default_popup": "popup/index.html"
  }
}