MaTerialgram

Experience Telegram with the new Material Design, dark and light, clean and simple

Что такое MaTerialgram?

MaTerialgram - это расширение Chrome, разработанное alvinbhou, и его основная функция - "Experience Telegram with the new Material Design, dark and light, clean and simple".

Снимки экрана расширения

screenshot
screenshot

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

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

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

                        This project is inspired by the recently redesign of Android Message Web. Aims to redesign Telgram web while following the new Material design guideline (or so-called Material Design 2). 

You can simply switch between the dark and light theme by clicking the switcher from the extension.

View the source code on https://github.com/CryoliteZ/MaTerialgram                    

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

Название MaTerialgram MaTerialgram
ID aebgckccbkgbeigkkdglihleeipanoan
Официальный URL https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan
Описание Experience Telegram with the new Material Design, dark and light, clean and simple
Размер файла 1.67 MB
Количество установок 739
Текущая Версия 1.0.5
Последнее Обновление 2020-08-25
Дата публикации 2019-02-28
Рейтинг 4.67/5 Всего 6 оценок
Разработчик alvinbhou
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/CryoliteZ/MaTerialgram
URL страницы помощи https://github.com/CryoliteZ/MaTerialgram
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MaTerialgram",
    "author": "Alvin Hou",
    "description": "Experience Telegram with the new Material Design, dark and light, clean and simple",
    "version": "1.0.5",
    "icons": {
        "16": "icons\/icon-dark-16.png",
        "128": "icons\/icon-dark-128.png"
    },
    "homepage_url": "https:\/\/github.com\/CryoliteZ\/MaTerialgram",
    "browser_action": {
        "default_icon": "icons\/icon-dark.png",
        "default_title": "MaTerialgram",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.telegram.org\/*",
                "http:\/\/web.telegram.org\/*"
            ],
            "css": [
                "material-theme.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}