Simple Facebook Customizer
Customize Facebook any way you want
Was ist Simple Facebook Customizer?
Simple Facebook Customizer ist eine Chrome-Erweiterung, die von Dawid Sobotka entwickelt wurde, und ihr Hauptmerkmal ist "Customize Facebook any way you want".
Erweiterungsscreenshots
Simple Facebook Customizer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Simple Facebook Customizer-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
Change default Facebook look with any combination of either custom defined or predefined settings. Hiding various bars, notifications, messages and more! Remove elements that bother you or you simply don't like the look of them. Need was the mother of this extension - installing an extension and simply checking wanted toggles is way easier than editing browser custom CSS's every time you want to make persistent stylesheet for a website - in this case Facebook. Feedback highly appreciated, ideas or requests for any features will be taken into account and maybe implemented in the near future.
Grundlegende Informationen zur Erweiterung
Name | |
ID | lggklkfbhcbpdighlgjicacbddhjabni |
Offizielle URL | https://chromewebstore.google.com/detail/simple-facebook-customize/lggklkfbhcbpdighlgjicacbddhjabni |
Beschreibung | Customize Facebook any way you want |
Dateigröße | 80.9 KB |
Installationsanzahl | 27 |
Aktuelle Version | 0.5.1 |
Letztes Update | 2023-03-20 |
Veröffentlichungsdatum | 2022-02-01 |
Entwickler | Dawid Sobotka |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sobekcore/simple-facebook-customizer |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Facebook Customizer", "description": "Customize Facebook any way you want", "manifest_version": 3, "version": "0.5.1", "permissions": [ "storage", "tabs" ], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "action": { "default_popup": "packages\/popup\/dist\/popup.html", "default_title": "Simple Facebook Customizer", "default_icon": { "16": "icons\/inactive\/16.png", "32": "icons\/inactive\/32.png", "48": "icons\/inactive\/48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.facebook.com\/*" ], "run_at": "document_start", "js": [ "packages\/content\/dist\/content.js" ] } ], "background": { "service_worker": "packages\/background\/dist\/background.js" } } |