Post Filter Pro

Post Filter Pro

Customize your Facebook experience by filtering out ads or posts from your newsfeed, groups, pages or profile based on keywords.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Post Filter Pro",
  "version": "2.1.42",
  "description": "Customize your Facebook experience by filtering out ads or posts from your newsfeed, groups, pages or profile based on keywords.",
  "short_name": "PFP",
  "icons": {
    "16": "images/1623666624400-smallLogo.png",
    "48": "images/1623666624448-mediumLogo.png",
    "128": "images/1623666624494-largeLogo.png"
  },
  "action": {
    "default_popup": "dashboard.html",
    "default_title": "Post Filter Pro"
  },
  "content_scripts": [
    {
      "matches": [
        "https://facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "wrapper.js"
  },
  "permissions": [
    "storage",
    "webNavigation",
    "scripting"
  ],
  "host_permissions": [
    "https://facebook.com/*",
    "https://www.facebook.com/*"
  ]
}