Slice - You browse. We pay.

Slice - You browse. We pay.

Take back what belongs to you - monetize your browser, get paid for ads, cash in with Slice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Slice - You browse. We pay.",
  "description": "Take back what belongs to you - monetize your browser, get paid for ads, cash in with Slice.",
  "homepage_url": "https://addslice.com",
  "version": "1.1.0",
  "default_locale": "en",
  "icons": {
    "16": "slice.png",
    "48": "slice.png",
    "128": "slice.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "",
    "default_icon": "slice.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "alarms",
    "management",
    "declarativeNetRequest",
    "tabs",
    "tabGroups",
    "notifications",
    "webNavigation"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://addslice.com/*"
      ],
      "js": [
        "communication.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "twitch.js"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "matches": [
        "https://*/*"
      ],
      "js": [
        "iframe.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true
    },
    {
      "matches": [
        "https://sli.ce.it/*"
      ],
      "js": [
        "preload.js"
      ],
      "run_at": "document_start"
    }
  ]
}