MaTerialgram
Experience Telegram with the new Material Design, dark and light, clean and simple
什么是MaTerialgram?
MaTerialgram是由alvinbhou开发的Chrome扩展程序,该扩展的主要功能是“Experience Telegram with the new Material Design, dark and light, clean and simple”。
扩展截图
下载MaTerialgram扩展crx文件
下载MaTerialgram扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | aebgckccbkgbeigkkdglihleeipanoan |
| 官方URL | https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan |
| 简介 | Experience Telegram with the new Material Design, dark and light, clean and simple |
| 文件大小 | 1.67 MB |
| 安装次数 | 739 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2020-08-25 |
| 上架时间 | 2019-02-28 |
| 评分 | 4.67/5 共6次评分 |
| 开发者 | alvinbhou |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/CryoliteZ/MaTerialgram |
| 帮助页面URL | https://github.com/CryoliteZ/MaTerialgram |
| 支持的语言 | 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"
]
}
]
} | |