Gmail Classic
Revert my gmail
什麼是Gmail Classic?
Gmail Classic是由epper.marshall開發的Chrome擴展程式,該擴展的主要功能是“Revert my gmail”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | flkjieldopkkipfldndimbfmlolahlfd |
官方網址 | 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" } ] } |