MaTerialgram
Experience Telegram with the new Material Design, dark and light, clean and simple
Wat is MaTerialgram?
MaTerialgram is een Chrome-extensie ontwikkeld door alvinbhou, en de belangrijkste functie is "Experience Telegram with the new Material Design, dark and light, clean and simple".
Extensie Screenshots
Download het CRX-bestand van de extensie MaTerialgram
Download MaTerialgram-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | MaTerialgram |
ID | aebgckccbkgbeigkkdglihleeipanoan |
Officiële URL | https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan |
Beschrijving | Experience Telegram with the new Material Design, dark and light, clean and simple |
Bestandsgrootte | 1.67 MB |
Aantal Installaties | 739 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2020-08-25 |
Publicatiedatum | 2019-02-28 |
Beoordeling | 4.67/5 Totaal 6 Beoordelingen |
Ontwikkelaar | alvinbhou |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/CryoliteZ/MaTerialgram |
Help Pagina-URL | https://github.com/CryoliteZ/MaTerialgram |
Ondersteunde Talen | 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" ] } ] } |