Simple Facebook Customizer

Customize Facebook any way you want

Simple Facebook Customizerとは何ですか?

Simple Facebook CustomizerはDawid Sobotkaによって開発されたChromeの拡張機能で、その主な機能は「Customize Facebook any way you want」です。

拡張機能のスクリーンショット

screenshot
screenshot

Simple Facebook Customizer拡張機能のCRXファイルをダウンロード

Simple Facebook Customizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Simple Facebook Customizer Simple Facebook Customizer
ID lggklkfbhcbpdighlgjicacbddhjabni
公式URL https://chromewebstore.google.com/detail/simple-facebook-customize/lggklkfbhcbpdighlgjicacbddhjabni
説明 Customize Facebook any way you want
ファイルサイズ 80.9 KB
インストール数 27
現在のバージョン 0.5.1
最終更新日 2023-03-20
公開日 2022-02-01
開発者 Dawid Sobotka
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sobekcore/simple-facebook-customizer
対応言語 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"
    }
}