Jelly: Surf the Web & Earn Crypto

Jelly: Surf the Web & Earn Crypto

Browse the web and earn rewards. Jelly shows you personalized ads and gives you rewards for watching them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jelly: Surf the Web & Earn Crypto",
  "description": "Browse the web and earn rewards. Jelly shows you personalized ads and gives you rewards for watching them.",
  "version": "1.8",
  "author": "chaincliQ, Inc.",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/assets/img/icons/16x16.png",
      "32": "/assets/img/icons/32x32.png",
      "48": "/assets/img/icons/48x48.png",
      "128": "/assets/img/icons/128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/dependencies/lib/jquery-ui/jquery-ui.min.css",
        "/app/src/css/main.css"
      ],
      "js": [
        "/dependencies/lib/jquery/jquery.min.js",
        "/dependencies/lib/jquery-ui/jquery-ui.min.js",
        "/app/src/js/main.js"
      ]
    }
  ],
  "icons": {
    "16": "/assets/img/icons/16x16.png",
    "32": "/assets/img/icons/32x32.png",
    "48": "/assets/img/icons/48x48.png",
    "128": "/assets/img/icons/128x128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "/dependencies/core/js/*.js",
        "/dependencies/app/js/*.js",
        "/app/src/js/main-module.js",
        "/resources/views/utilities/popup.html",
        "/resources/views/utilities/banner.html"
      ]
    }
  ],
  "host_permissions": [
    "https://ads-backend.chaincliq.com/"
  ]
}