Netflix Addictector – Netflix Screen Time

Netflix Addictector – Netflix Screen Time

A web browser extension that identifies, prevents, and helps with Netflix addiction. It’s time to push pause on your addiction.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Netflix Addictector – Netflix Screen Time",
  "short_name": "Netflix Addictector",
  "version": "1.1.2",
  "version_name": "1.1.2",
  "action": {
    "default_title": "Netflix Addictector",
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "/assets/images/icon-16.png",
      "19": "/assets/images/icon-19.png",
      "32": "/assets/images/icon-32.png",
      "38": "/assets/images/icon-38.png",
      "48": "/assets/images/icon-48.png",
      "128": "/assets/images/icon-128.png"
    }
  },
  "description": "A web browser extension that identifies, prevents, and helps with Netflix addiction. It’s time to push pause on your addiction.",
  "icons": {
    "16": "/assets/images/icon-16.png",
    "19": "/assets/images/icon-19.png",
    "32": "/assets/images/icon-32.png",
    "38": "/assets/images/icon-38.png",
    "48": "/assets/images/icon-48.png",
    "128": "/assets/images/icon-128.png"
  },
  "author": "https://felixisaac.dev",
  "background": {
    "service_worker": "background.js"
  },
  "homepage_url": "https://github.com/FelixIsaac/netflix-addictector",
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "*://*.netflix.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "/scripts/content.js",
        "/scripts/utils.js",
        "/scripts/timer.js",
        "/scripts/screen-blocker.js"
      ]
    }
  ],
  "options_page": "options/options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/no.svg",
        "assets/css/blocked.css"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ]
    }
  ]
}