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
拡張機能の基本情報
名前 | 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 |
Eメール | [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" ] } ] } |