MaTerialgram

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

Cos'è MaTerialgram?

MaTerialgram è un'estensione di Chrome sviluppata da alvinbhou, e la sua funzione principale è "Experience Telegram with the new Material Design, dark and light, clean and simple".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione MaTerialgram

Scarica i file di estensione MaTerialgram in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome MaTerialgram MaTerialgram
ID aebgckccbkgbeigkkdglihleeipanoan
URL Ufficiale https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan
Descrizione Experience Telegram with the new Material Design, dark and light, clean and simple
Dimensione del File 1.67 MB
Conteggio Installazioni 739
Versione Corrente 1.0.5
Ultimo Aggiornamento 2020-08-25
Data di Pubblicazione 2019-02-28
Valutazione 4.67/5 Totale 6 Valutazioni
Sviluppatore alvinbhou
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/CryoliteZ/MaTerialgram
URL della Pagina di Aiuto https://github.com/CryoliteZ/MaTerialgram
Lingue Supportate 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"
            ]
        }
    ]
}