Hide reactions for facebook

Hide reactions for facebook

It's annoy that seeing the unnecessary reaction. Remove it and display like only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide reactions for facebook",
  "description": "It's annoy that seeing the unnecessary reaction. Remove it and display like only.",
  "version": "7",
  "action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "commands": {},
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "background.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}