MaTerialgram
Experience Telegram with the new Material Design, dark and light, clean and simple
MaTerialgram là gì?
MaTerialgram là một tiện ích mở rộng Chrome được phát triển bởi alvinbhou, và tính năng chính của nó là "Experience Telegram with the new Material Design, dark and light, clean and simple".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng MaTerialgram
Tải xuống các tệp mở rộng MaTerialgram dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MaTerialgram |
ID | aebgckccbkgbeigkkdglihleeipanoan |
URL Chính Thức | https://chromewebstore.google.com/detail/materialgram/aebgckccbkgbeigkkdglihleeipanoan |
Mô tả | Experience Telegram with the new Material Design, dark and light, clean and simple |
Kích Thước Tệp | 1.67 MB |
Số Lần Cài Đặt | 739 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2020-08-25 |
Ngày Phát Hành | 2019-02-28 |
Đánh Giá | 4.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | alvinbhou |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/CryoliteZ/MaTerialgram |
URL Trang Trợ Giúp | https://github.com/CryoliteZ/MaTerialgram |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |