Gmail Classic

Revert my gmail

Gmail Classicとは何ですか?

Gmail Classicはepper.marshallによって開発されたChromeの拡張機能で、その主な機能は「Revert my gmail」です。

拡張機能のスクリーンショット

screenshot

Gmail Classic拡張機能のCRXファイルをダウンロード

Gmail Classic拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}