Gmail condensed style

Gmail condensed style

什麼是Gmail condensed style?

Gmail condensed style是由Yury Ershov開發的Chrome擴展程式,該擴展的主要功能是“Gmail condensed style”。

擴展截圖

screenshot

下載Gmail condensed style擴展crx文件

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

擴展使用說明

                        Less white space -> more information on the page!

* Since version 2.0 there are settings!

(if the extension fails to start, try disabling and re-enabling it on the chrome://extensions page)

* Remove useless paddings for the most of the page elements
* Make buttons look as active clickable elements
* Add border around email compose text area
* Highlight the email row in the list on hover/focus
* Narrow down labels tree when always expanded; Widen it when hover-expanded
* Less space for top/search bar
* Disable animations
* Multi inbox section labels clearer design                    

擴展基本資訊

名稱 Gmail condensed style Gmail condensed style
ID emgpbaognndhnclaogipmikglnhhbhcg
官方網址 https://chrome.google.com/webstore/detail/gmail-condensed-style/emgpbaognndhnclaogipmikglnhhbhcg
簡介 Gmail condensed style
檔案大小 20.49 KB
安裝次數 108
目前版本 2.0.11
更新時間 2020-04-26
上架時間 2020-04-26
評分 5.00/5 共 1 次評分
開發者 Yury Ershov
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail condensed style",
    "short_name": "Gmail condensed style",
    "version": "2.0.11",
    "description": "Gmail condensed style",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/mail.google.com\/*"
    ],
    "web_accessible_resources": [
        "style.css"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "options.html",
        "default_title": "Gmail condensed options"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/mail.google.com\/*features=-Sapinto*",
                "https:\/\/mail.google.com\/*features=*,-Sapinto*",
                "https:\/\/mail.google.com\/*sapinto=0*"
            ],
            "all_frames": false,
            "js": [
                "gen.js",
                "chrome.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/mail.google.com\/*features=-Sapinto*",
                "https:\/\/mail.google.com\/*features=*,-Sapinto*",
                "https:\/\/mail.google.com\/*sapinto=0*"
            ],
            "all_frames": false,
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}