Reaction Remover
A quick and easy tool to remove reactions from Facebook.
Was ist Reaction Remover?
Reaction Remover ist eine Chrome-Erweiterung, die von randolphriback entwickelt wurde, und ihr Hauptmerkmal ist "A quick and easy tool to remove reactions from Facebook.".
Erweiterungsscreenshots
Reaction Remover-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reaction Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Sick of seeing laugh reacts on serious article links? Want a cleaner newsfeed? Give Reaction Remover a try. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dfiapeofdbbemafjadbomikmdlgkihjn |
| Offizielle URL | https://chromewebstore.google.com/detail/reaction-remover/dfiapeofdbbemafjadbomikmdlgkihjn |
| Beschreibung | A quick and easy tool to remove reactions from Facebook. |
| Dateigröße | 21.25 KB |
| Installationsanzahl | 18 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2021-08-25 |
| Veröffentlichungsdatum | 2021-08-25 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | randolphriback |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://wpvip.com/privacy |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Reaction Remover",
"description": "A quick and easy tool to remove reactions from Facebook.",
"version": "1.2",
"icons": {
"128": "png128.png"
},
"background": {
"persistent": true,
"page": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"js\/inject.js",
"js\/normalize.js"
],
"all_frames": false
}
],
"browser_action": {
"default_icon": "pngegg.png",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"http:\/\/www.facebook.com\/*",
"https:\/\/www.facebook.com\/*",
"http:\/\/web.facebook.com\/*",
"https:\/\/web.facebook.com\/*"
]
} | |