Simple Facebook Customizer

Customize Facebook any way you want

Qu'est-ce que Simple Facebook Customizer ?

Simple Facebook Customizer est une extension Chrome développée par Dawid Sobotka, et sa fonction principale est "Customize Facebook any way you want".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple Facebook Customizer

Téléchargez les fichiers d'extension Simple Facebook Customizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Simple Facebook Customizer Simple Facebook Customizer
ID lggklkfbhcbpdighlgjicacbddhjabni
URL Officiel https://chromewebstore.google.com/detail/simple-facebook-customize/lggklkfbhcbpdighlgjicacbddhjabni
Description Customize Facebook any way you want
Taille du Fichier 80.9 KB
Nombre d'Installations 27
Version Actuelle 0.5.1
Dernière Mise à Jour 2023-03-20
Date de Publication 2022-02-01
Développeur Dawid Sobotka
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sobekcore/simple-facebook-customizer
Langues Prises en Charge 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"
    }
}