Switch layout for Facebook

Attempt to Revert Facebook to the Switch layout

Cos'è Switch layout for Facebook?

Switch layout for Facebook è un'estensione di Chrome sviluppata da ajaypawaan1, e la sua funzione principale è "Attempt to Revert Facebook to the Switch layout".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Switch layout for Facebook

Scarica i file di estensione Switch layout for Facebook in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Don't you like new Facebook design? Use this extension which will automatically switch to the Classic design!
Don't like the new Facebook design?
Facebook doesn't allow you to use old version? You want to use old layout of Facebook?                    

Informazioni di Base sull'Estensione

Nome Switch layout for Facebook Switch layout for Facebook
ID nnefkcimecphchcddfchkcpeneibkhkm
URL Ufficiale https://chrome.google.com/webstore/detail/switch-layout-for-faceboo/nnefkcimecphchcddfchkcpeneibkhkm
Descrizione Attempt to Revert Facebook to the Switch layout
Dimensione del File 234 KB
Conteggio Installazioni 24
Versione Corrente 1.0
Ultimo Aggiornamento 2021-08-09
Data di Pubblicazione 2021-08-09
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore ajaypawaan1
Email [email protected]
Tipo di Pagamento free
Lingue Supportate vi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Attempt to Revert Facebook to the Switch layout",
    "manifest_version": 2,
    "name": "Switch layout for Facebook",
    "author": "Nam Sokciu",
    "version": "1.0",
    "homepage_url": "http:\/\/facebook.com",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "*:\/\/*.facebook.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "purify.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "19": "19.png",
            "32": "32.png",
            "48": "48.png",
            "64": "64.png",
            "128": "128.png",
            "512": "512.png"
        },
        "default_title": "Switch layout for Facebook",
        "default_popup": "options.html"
    }
}