Slice - You browse. We pay.

Slice - You browse. We pay.

As you browse the internet, Slice will display 1-4 curated ads on selected pages. Whenever you see a Slice ad online, you are then compensated for your time and attention with cash. Customize the amount and type of ads you want to see.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Slice",
  "description": "",
  "version": "0.9.991",
  "default_locale": "en",
  "icons": {
    "16": "slice.png",
    "48": "slice.png",
    "128": "slice.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "",
    "default_icon": "slice.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "alarms",
    "management",
    "tabs",
    "tabHide",
    "webRequest",
    "webRequestBlocking",
    "notifications",
    "https://*/*",
    "webNavigation"
  ],
  "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"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{3305ce06-bd12-47af-8c8b-bca3605f8ece}"
    }
  }
}