Better Cryptoast

Better Cryptoast

This extension enhances the CSS of Cryptoast.fr, bug fixes, dark & light theme auto detect...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Cryptoast",
  "description": "This extension enhances the CSS of Cryptoast.fr, bug fixes, dark & light theme auto detect...",
  "version": "1.4.2",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "declarativeNetRequest",
    "cookies"
  ],
  "host_permissions": [
    "https://cryptoast.fr/*",
    "https://api.coingecko.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "path": "rules.json",
        "enabled": true
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://cryptoast.fr/*"
      ],
      "exclude_matches": [
        "*://cryptoast.fr/wp-admin/*",
        "*://cryptoast.fr/journal/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "theme.js",
        "content.js",
        "coinDetect.js",
        "authorCheck.js",
        "progressBar.js",
        "btcPrice.js",
        "searchBox.js",
        "imgEnhance.js",
        "buyButtons.js",
        "cookieEaster.js",
        "lightBox.js"
      ]
    }
  ]
}