Studify - Wipe Off Distractions

Studify - Wipe Off Distractions

Remove the uneducational videos and distractive elements from youtube and block websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.0",
  "default_locale": "en",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://*/"
  ],
  "description": "__MSG_appDesc__",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "hideDistraction.css"
      ],
      "all_frames": true
    }
  ]
}