MaTerialgram
Experience Telegram with the new Material Design, dark and light, clean and simple
What is MaTerialgram?
MaTerialgram is a Chrome extension developed by alvinbhou, and its main feature is "Experience Telegram with the new Material Design, dark and light, clean and simple".
Extension Screenshots
Download MaTerialgram Extension CRX File
Download MaTerialgram extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | MaTerialgram |
ID | aebgckccbkgbeigkkdglihleeipanoan |
Official URL | https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan |
Description | Experience Telegram with the new Material Design, dark and light, clean and simple |
File Size | 1.67 MB |
Installation Count | 739 |
Current Version | 1.0.5 |
Last Updated | 2020-08-25 |
Publish Date | 2019-02-28 |
Rating | 4.67/5 Total 6 Ratings |
Developer | alvinbhou |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/CryoliteZ/MaTerialgram |
Help Page URL | https://github.com/CryoliteZ/MaTerialgram |
Supported Languages | 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" ] } ] } |