Cyder | Control Your Data & Earn Rewards

Cyder | Control Your Data & Earn Rewards

Cyder is creating an internet where you own and get compensated for your data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cyder | Control Your Data & Earn Rewards",
  "description": "Cyder is creating an internet where you own and get compensated for your data.",
  "version": "2.2.3.5",
  "manifest_version": 3,
  "action": {
    "default_title": "Cyder",
    "default_icon": {
      "16": "img/brand-icon-small.png",
      "32": "img/brand-icon-small.png",
      "48": "img/brand-icon.png",
      "128": "img/brand-icon.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/brand-icon-small.png",
    "32": "img/brand-icon-small.png",
    "48": "img/brand-icon.png",
    "128": "img/brand-icon.png"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "permissions": [
    "privacy",
    "scripting",
    "storage",
    "tabs",
    "webNavigation",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; font-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "css/contentScript.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png",
        "js/*.js",
        "css/*.css",
        "fonts/*.woff2"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.getcyder.com/*"
    ]
  }
}