Messenger Only

Simplifies the html of the Messenger section in Facebook.

Vad är Messenger Only?

Messenger Only är en Chrome-tillägg utvecklad av Anton Petrov (blz777), och dess huvudfunktion är "Simplifies the html of the Messenger section in Facebook.".

Ladda ner Messenger Only-förlängningens CRX-fil

Ladda ner Messenger Only-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Messenger Only Messenger Only
ID pajmhgafdleolgnobmgphhbihoenekim
Officiell webbadress https://chrome.google.com/webstore/detail/messenger-only/pajmhgafdleolgnobmgphhbihoenekim
Beskrivning Simplifies the html of the Messenger section in Facebook.
Filstorlek 3.44 KB
Antal Installationer 114
Aktuell Version 0.20
Senast Uppdaterad 2015-03-01
Publiceringsdatum 2015-03-01
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare Anton Petrov (blz777)
Betalningssätt free
Stödda Språk 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
}