Filter Anything Everywhere

Filter Anything Everywhere

Filter feeds, lists and comment sections on all websites at the same time with this universal keyword blocker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Filter Anything Everywhere",
  "description": "Filter feeds, lists and comment sections on all websites at the same time with this universal keyword blocker.",
  "version": "1.3.2",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content_bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background_bundle.js",
    "type": "module"
  },
  "icons": {
    "128": "images/glasses128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_page": false
  },
  "action": {
    "default_icon": {
      "19": "images/glasses19.png",
      "38": "images/glasses38.png"
    },
    "default_title": "Filter Anything Everywhere",
    "default_popup": "browser_action.html"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "manifest_version": 3
}