Messenger Only

Simplifies the html of the Messenger section in Facebook.

Co to jest Messenger Only?

Messenger Only to rozszerzenie Chrome opracowane przez Anton Petrov (blz777), a jego główną funkcją jest „Simplifies the html of the Messenger section in Facebook.”.

Pobierz plik CRX rozszerzenia Messenger Only

Pobierz pliki rozszerzeń Messenger Only w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Messenger Only Messenger Only
ID pajmhgafdleolgnobmgphhbihoenekim
Oficjalny URL https://chrome.google.com/webstore/detail/messenger-only/pajmhgafdleolgnobmgphhbihoenekim
Opis Simplifies the html of the Messenger section in Facebook.
Rozmiar pliku 3.44 KB
Liczba instalacji 114
Aktualna Wersja 0.20
Ostatnia Aktualizacja 2015-03-01
Data Publikacji 2015-03-01
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Anton Petrov (blz777)
Typ Płatności free
Obsługiwane Języki 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
}