Crypto Fear & Greed Index

Crypto Fear & Greed Index

Show Fear & Greed Index directly on Firefox toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Crypto Fear & Greed Index",
  "version": "0.0.0.1",
  "description": "Show Fear & Greed Index directly on Firefox toolbar",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.mozilla.org/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "permissions": [
    "alarms"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{79a52205-7df4-415a-b764-bcefd647f883}"
    }
  }
}