Post Office

Chrome email functions

什麼是Post Office?

Post Office是由https://it.nicksimmonds.com開發的Chrome擴展程式,該擴展的主要功能是“Chrome email functions”。

擴展截圖

screenshot
screenshot

下載Post Office擴展crx文件

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

擴展使用說明

                        Post Office is an extension that adds the option to bypass your default email provider.  You can keep sending via Outlook, Mail, etc. just by clicking links, but when you right-click you're presented with the option to send via a webmail provider.  You can select which providers are available on the options page.  

You can also toggle on Post Office's mail bypass by clicking the icon.  While toggled, Post Office will send mail links to your web mail provide of choice (set on the options page) rather than your machine's default mail client. Clicking again will return control to whatever you were using before for mail.

Supports:

* Gmail
* Yahoo! mail
* Microsoft Live mail
* Outlook Web Access (must provide the web access URL in options)                    

擴展基本資訊

名稱 Post Office Post Office
ID bpckloinaeafhkniklgjhbjicjhbbecj
官方網址 https://chromewebstore.google.com/detail/post-office/bpckloinaeafhkniklgjhbjicjhbbecj
簡介 Chrome email functions
檔案大小 83.82 KB
安裝次數 202
目前版本 1
更新時間 2012-11-08
上架時間 2012-11-08
評分 4.33/5 共 6 次評分
開發者 https://it.nicksimmonds.com
付費類型 free
擴展官網 http://nicksimmonds.com
支援的語言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Post Office",
    "version": "1",
    "manifest_version": 2,
    "options_page": "preferences.html",
    "description": "Chrome email functions",
    "browser_action": {
        "default_icon": "disicon.png",
        "default_title": "Post Office"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "mailscripts.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "mail.js",
            "toggle.js"
        ]
    },
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus"
    ],
    "icons": {
        "16": "minicon.png",
        "48": "midicon.png",
        "128": "bigicon.png"
    }
}