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
公式URL 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"
    }
}