MaTerialgram

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

Co to jest MaTerialgram?

MaTerialgram to rozszerzenie Chrome opracowane przez alvinbhou, a jego główną funkcją jest „Experience Telegram with the new Material Design, dark and light, clean and simple”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia MaTerialgram

Pobierz pliki rozszerzeń MaTerialgram 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa MaTerialgram MaTerialgram
ID aebgckccbkgbeigkkdglihleeipanoan
Oficjalny URL https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan
Opis Experience Telegram with the new Material Design, dark and light, clean and simple
Rozmiar pliku 1.67 MB
Liczba instalacji 739
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2020-08-25
Data Publikacji 2019-02-28
Ocena 4.67/5 Łącznie 6 Oceny
Deweloper alvinbhou
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/CryoliteZ/MaTerialgram
Adres URL Strony Pomocy https://github.com/CryoliteZ/MaTerialgram
Obsługiwane Języki 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"
            ]
        }
    ]
}