2-Pane for Gmail/Calendar

Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too.

什麼是2-Pane for Gmail/Calendar?

2-Pane for Gmail/Calendar是由codef0rmer開發的Chrome擴展程式,該擴展的主要功能是“Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too.”。

擴展截圖

下載2-Pane for Gmail/Calendar擴展crx文件

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

擴展使用說明

                        This Google chrome extension which makes more room for mails by converting Gmail into a two-pane navigation scheme. To access controls hidden in 2-Pane mode, click the icon in the addressbar.

Now it works for Google Calendar as well. Enjoy!                    

擴展基本資訊

名稱 2-Pane for Gmail/Calendar 2-Pane for Gmail/Calendar
ID jimomiffmbadddfkmhpafdbbofnkdeec
官方網址 https://chrome.google.com/webstore/detail/2-pane-for-gmailcalendar/jimomiffmbadddfkmhpafdbbofnkdeec
簡介 Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too.
檔案大小 55.3 KB
安裝次數 302
目前版本 0.9
更新時間 2014-12-18
上架時間 2014-12-18
評分 4.57/5 共 7 次評分
開發者 codef0rmer
付費類型 free
擴展官網 http://amitgharat.wordpress.com/2011/11/04/gmail-can-be-more-awesome/
說明頁面URL http://amitgharat.wordpress.com/2011/11/04/gmail-can-be-more-awesome/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "2-Pane for Gmail\/Calendar",
    "version": "0.9",
    "manifest_version": 2,
    "description": "Tune Gmail by hiding the top navigation.  Easily turned on and off through an icon in addressbar. It works with Google Calendar too.",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/jquery.min.js",
                "js\/app.js"
            ],
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*",
                "http:\/\/www.google.com\/calendar\/*",
                "https:\/\/www.google.com\/calendar\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/logo_128.gif",
        "19": "images\/logo_19.gif",
        "48": "images\/logo_48.gif",
        "64": "images\/logo_64.gif"
    },
    "page_action": {
        "default_icon": "images\/logo_48.gif",
        "default_popup": "popup.html",
        "default_title": "2-Pane for Gmail\/Calendar: Click the icon to toggle the Navigation Bar maximizing vertical space"
    },
    "permissions": [
        "tabs",
        "http:\/\/mail.google.com\/",
        "https:\/\/mail.google.com\/",
        "http:\/\/www.google.com\/calendar\/",
        "https:\/\/www.google.com\/calendar\/",
        "unlimitedStorage"
    ]
}