Slice New Tab (discontinued)

Slice New Tab (discontinued)

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 New Tab (discontinued)",
  "description": "Take back what belongs to you - monetize your browser, get paid for ads, cash in with Slice.",
  "homepage_url": "https://addslice.com",
  "version": "0.0.9",
  "default_locale": "en",
  "icons": {
    "16": "extensionIcon.png",
    "48": "extensionIcon.png",
    "128": "extensionIcon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "permissions": [
    "storage",
    "topSites"
  ],
  "action": {
    "default_title": "Click to open the Slice New Tab page."
  },
  "content_scripts": [
    {
      "matches": [
        "https://sli.ce.it/tab"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://addslice.com/auth"
      ],
      "js": [
        "auth.js"
      ]
    }
  ]
}