News Feed Sanitizer

News Feed Sanitizer

Clean your social networks news feeds, by filtering the posts based on a banned word list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "News Feed Sanitizer",
  "description": "Clean your social networks news feeds, by filtering the posts based on a banned word list.",
  "version": "1.0.11",
  "manifest_version": 3,
  "background": {
    "service_worker": "resources/js/service-worker_src.min.js"
  },
  "content_scripts": [
    {
      "css": [
        "resources/css/common.css",
        "content.css"
      ],
      "js": [
        "resources/js/browser-polyfill_src.min.js",
        "resources/js/jquery-3.6.1.min.js",
        "resources/js/main_src.min.js",
        "resources/js/extapi_src.min.js",
        "content_src.min.js"
      ],
      "matches": [
        "https://*.facebook.com/*",
        "https://*.twitter.com/*",
        "https://*.instagram.com/*",
        "https://*.reddit.com/*",
        "https://*.linkedin.com/*",
        "https://*.tiktok.com/*",
        "https://*.youtube.com/*",
        "https://news-feed-cleaner.adolix.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "identity",
    "identity.email"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "resources/images/anfc_16.png",
    "48": "resources/images/anfc_48.png",
    "128": "resources/images/anfc_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}