Gmail Classic Theme

An extension for reverting Gmail to the Classic Theme

什麼是Gmail Classic Theme?

Gmail Classic Theme是由Andrew Powell @shellscape開發的Chrome擴展程式,該擴展的主要功能是“An extension for reverting Gmail to the Classic Theme”。

擴展截圖

screenshot
screenshot

下載Gmail Classic Theme擴展crx文件

下載Gmail Classic Theme擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        What Google giveth, Google taketh away. Google has recently forced a UI update upon the users of Gmail. Unfortunately, not everyone thinks it's an improvement. Installing this extension will revert the UI of Gmail to the previous "Classic" theme. The theme is based on the actual CSS from the previous UI and makes no additions or subjective changes.

This extension is open source. You can review or contribute to the code for this extension here: https://github.com/shellscape/gmail-classic.

Release info and change-log can be found here: https://github.com/shellscape/gmail-classic/releases.                    

擴展基本資訊

名稱 Gmail Classic Theme Gmail Classic Theme
ID cokholnilkppcchlfepienmlbafkjplj
官方網址 https://chrome.google.com/webstore/detail/gmail-classic-theme/cokholnilkppcchlfepienmlbafkjplj
簡介 An extension for reverting Gmail to the Classic Theme
檔案大小 17.38 KB
安裝次數 994
目前版本 0.1.1
更新時間 2018-11-19
上架時間 2018-11-19
評分 4.00/5 共 7 次評分
開發者 Andrew Powell @shellscape
付費類型 free
擴展官網 https://github.com/shellscape/gmail-classic
說明頁面URL https://github.com/shellscape/gmail-classic
支援的語言 en
manifest.json
{
    "name": "Gmail Classic Theme",
    "short_name": "Gmail Classic Theme",
    "version": "0.1.1",
    "description": "An extension for reverting Gmail to the Classic Theme",
    "homepage_url": "http:\/\/github.com\/shellscape\/gmail-classic",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Andrew Powell (shellscape)",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "\/assets\/16.png",
            "38": "\/assets\/48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "gmail.css"
            ]
        }
    ],
    "icons": {
        "16": "\/assets\/16.png",
        "32": "\/assets\/32.png",
        "48": "\/assets\/48.png",
        "64": "\/assets\/64.png",
        "128": "\/assets\/128.png"
    },
    "permissions": [
        "activeTab",
        "*:\/\/mail.google.com\/"
    ]
}