Slice New Tab - Customize, Monetize, Earn

Slice New Tab - Customize, Monetize, Earn

Supercharge your browser and take back what belongs to you - monetize your new tabs, get paid for ads, and 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 - Customize, Monetize, Earn",
  "description": "Supercharge your browser and take back what belongs to you - monetize your new tabs, get paid for ads, and cash in with Slice.",
  "homepage_url": "https://addslice.com",
  "version": "0.4.8",
  "default_locale": "en",
  "icons": {
    "16": "extensionIcon.png",
    "48": "extensionIcon.png",
    "128": "extensionIcon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "alarms",
    "management",
    "webNavigation",
    "notifications"
  ],
  "action": {
    "default_title": "Slice New Tab - Customize, Monetize, Earn"
  },
  "chrome_url_overrides": {
    "newtab": "tab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.addslice.com/*"
      ],
      "all_frames": true,
      "js": [
        "auth.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.addslice.com/tab/install"
      ],
      "js": [
        "install.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.sli.ce.it/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}