MaTerialgram
Experience Telegram with the new Material Design, dark and light, clean and simple
¿Qué es MaTerialgram?
MaTerialgram es una extensión de Chrome desarrollada por alvinbhou, y su función principal es "Experience Telegram with the new Material Design, dark and light, clean and simple".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión MaTerialgram
Descarga archivos de extensión MaTerialgram en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | MaTerialgram |
ID | aebgckccbkgbeigkkdglihleeipanoan |
URL Oficial | https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan |
Descripción | Experience Telegram with the new Material Design, dark and light, clean and simple |
Tamaño del Archivo | 1.67 MB |
Cantidad de Instalaciones | 739 |
Versión Actual | 1.0.5 |
Última Actualización | 2020-08-25 |
Fecha de Publicación | 2019-02-28 |
Calificación | 4.67/5 Total de 6 Calificaciones |
Desarrollador | alvinbhou |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/CryoliteZ/MaTerialgram |
URL de la Página de Ayuda | https://github.com/CryoliteZ/MaTerialgram |
Idiomas Soportados | 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" ] } ] } |