Messenger Only

Simplifies the html of the Messenger section in Facebook.

Cos'è Messenger Only?

Messenger Only è un'estensione di Chrome sviluppata da Anton Petrov (blz777), e la sua funzione principale è "Simplifies the html of the Messenger section in Facebook.".

Scarica il file CRX dell'estensione Messenger Only

Scarica i file di estensione Messenger Only 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

                        Automatically removes the top blue bar of Facebook when you open the Facebook Messenger section (at facebook.com/messenger). A page refresh might be required.

Source: https://github.com/blz777/messenger_only/                    

Informazioni di Base sull'Estensione

Nome Messenger Only Messenger Only
ID pajmhgafdleolgnobmgphhbihoenekim
URL Ufficiale https://chrome.google.com/webstore/detail/messenger-only/pajmhgafdleolgnobmgphhbihoenekim
Descrizione Simplifies the html of the Messenger section in Facebook.
Dimensione del File 3.44 KB
Conteggio Installazioni 114
Versione Corrente 0.20
Ultimo Aggiornamento 2015-03-01
Data di Pubblicazione 2015-03-01
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore Anton Petrov (blz777)
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Messenger Only",
    "description": "Simplifies the html of the Messenger section in Facebook.",
    "version": "0.20",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/messages\/*"
            ],
            "css": [
                "prepare.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.facebook.com\/messages\/*"
            ],
            "js": [
                "modifyPageContent.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}