MaTerialgram
Experience Telegram with the new Material Design, dark and light, clean and simple
Co je MaTerialgram?
MaTerialgram je rozšíření Chrome vyvinuté alvinbhou, a jeho hlavní funkcí je „Experience Telegram with the new Material Design, dark and light, clean and simple“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření MaTerialgram
Stáhněte si soubory rozšíření MaTerialgram ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | MaTerialgram |
ID | aebgckccbkgbeigkkdglihleeipanoan |
Oficiální URL | https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan |
Popis | Experience Telegram with the new Material Design, dark and light, clean and simple |
Velikost souboru | 1.67 MB |
Počet instalací | 739 |
Aktuální Verze | 1.0.5 |
Poslední Aktualizace | 2020-08-25 |
Datum Vydání | 2019-02-28 |
Hodnocení | 4.67/5 Celkem 6 Hodnocení |
Vývojář | alvinbhou |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/CryoliteZ/MaTerialgram |
URL Stránky Nápovědy | https://github.com/CryoliteZ/MaTerialgram |
Podporované Jazyky | 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" ] } ] } |