Simple Facebook Customizer

Customize Facebook any way you want

Wat is Simple Facebook Customizer?

Simple Facebook Customizer is een Chrome-extensie ontwikkeld door Dawid Sobotka, en de belangrijkste functie is "Customize Facebook any way you want".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Simple Facebook Customizer

Download Simple Facebook Customizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Simple Facebook Customizer Simple Facebook Customizer
ID lggklkfbhcbpdighlgjicacbddhjabni
Officiële URL https://chromewebstore.google.com/detail/simple-facebook-customize/lggklkfbhcbpdighlgjicacbddhjabni
Beschrijving Customize Facebook any way you want
Bestandsgrootte 80.9 KB
Aantal Installaties 27
Huidige Versie 0.5.1
Laatst Bijgewerkt 2023-03-20
Publicatiedatum 2022-02-01
Ontwikkelaar Dawid Sobotka
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sobekcore/simple-facebook-customizer
Ondersteunde Talen 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"
    }
}