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
官方網址 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
電子郵箱 [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"
    }
}