FB Feed Cleaner

FB Feed Cleaner

Adjust the CSS attributes of sponsored and suggested posts on Facebook to improve the user experiences

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "FB Feed Cleaner",
  "description": "Adjust the CSS attributes of sponsored and suggested posts on Facebook to improve the user experiences",
  "version": "1.1.0",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "http://www.facebook.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}