Messenger Only

Simplifies the html of the Messenger section in Facebook.

Что такое Messenger Only?

Messenger Only - это расширение Chrome, разработанное Anton Petrov (blz777), и его основная функция - "Simplifies the html of the Messenger section in Facebook.".

Скачать файл CRX расширения Messenger Only

Скачайте файлы расширений Messenger Only в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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/                    

Основная информация о расширении

Название Messenger Only Messenger Only
ID pajmhgafdleolgnobmgphhbihoenekim
Официальный URL https://chrome.google.com/webstore/detail/messenger-only/pajmhgafdleolgnobmgphhbihoenekim
Описание Simplifies the html of the Messenger section in Facebook.
Размер файла 3.44 KB
Количество установок 114
Текущая Версия 0.20
Последнее Обновление 2015-03-01
Дата публикации 2015-03-01
Рейтинг 4.00/5 Всего 4 оценок
Разработчик Anton Petrov (blz777)
Тип оплаты free
Поддерживаемые языки 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
}