Post Office

Chrome email functions

O que é Post Office?

Post Office é uma extensão do Chrome desenvolvida por https://it.nicksimmonds.com, e sua principal característica é "Chrome email functions".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Post Office

Baixe arquivos de extensão Post Office no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Post Office Post Office
ID bpckloinaeafhkniklgjhbjicjhbbecj
URL Oficial https://chromewebstore.google.com/detail/post-office/bpckloinaeafhkniklgjhbjicjhbbecj
Descrição Chrome email functions
Tamanho do Arquivo 83.82 KB
Contagem de Instalações 202
Versão Atual 1
Última Atualização 2012-11-08
Data de Publicação 2012-11-08
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor https://it.nicksimmonds.com
Tipo de Pagamento free
Site da Extensão http://nicksimmonds.com
Idiomas Suportados 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"
    }
}