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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MaTerialgram 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}