Gmail Classic

Revert my gmail

Gmail Classic란 무엇입니까?

Gmail Classic은(는) epper.marshall에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Revert my gmail"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A css injector to revert some of the new gmail styles back to buttons.

Features you can selectively revert:
-compose button (you can even choose to change the color)
-icons in the left column by the folder names
-buttons along the top
-inbox shadow hover
-tabs

You will need to refresh gmail after loading this extension.                    

확장 프로그램 기본 정보

이름 Gmail Classic Gmail Classic
ID flkjieldopkkipfldndimbfmlolahlfd
공식 URL https://chrome.google.com/webstore/detail/gmail-classic/flkjieldopkkipfldndimbfmlolahlfd
설명 Revert my gmail
파일 크기 270 KB
설치 횟수 337
현재 버전 1.3
최근 업데이트 2018-10-01
출시 날짜 2018-10-01
평점 2.11/5 총 9 개의 평점
개발자 epper.marshall
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/depperm/classicGmail
도움말 페이지 URL https://github.com/depperm/classicGmail
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Classic",
    "version": "1.3",
    "description": "Revert my gmail",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "options.html",
        "default_title": "Classic Gmail Options",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "web_accessible_resources": [
        "classic.js",
        "shadow.css",
        "buttons.css",
        "compose.css",
        "lefticons.css",
        "tabs.css",
        "search.css"
    ],
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "jscolor.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/0*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "classic.js"
            ],
            "run_at": "document_start"
        }
    ]
}