facebook-muted-words

facebook-muted-words

A browser extension that mimics the muted words functionality offered by Twitter whilst browsing the Facebook news feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "facebook-muted-words",
  "version": "1.0.2",
  "description": "A browser extension that mimics the muted words functionality offered by Twitter whilst browsing the Facebook news feed",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "options_page": "options.html",
  "permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  }
}