Send from Gmail (by Google)

Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email

O que é Send from Gmail (by Google)?

Send from Gmail (by Google) é uma extensão do Chrome desenvolvida por [email protected], e sua principal característica é "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Send from Gmail (by Google)

Baixe arquivos de extensão Send from Gmail (by Google) 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

                        This extension will open a Compose window in Gmail when you click any email address on a webpage. It also provides a button that will create a Gmail message when clicked, using the page title as the subject and selected page text and link address as the message. For setting the domain name of your "Google Apps for your domain" account, click Options.

By installing this extension, you agree to the Terms of Service at https://chrome.google.com/extensions/intl/en/gallery_tos.html                    

Informações Básicas da Extensão

Nome Send from Gmail (by Google) Send from Gmail (by Google)
ID pgphcomnlaojlmmcjmiddhdapjpbgeoc
URL Oficial https://chromewebstore.google.com/detail/send-from-gmail-by-google/pgphcomnlaojlmmcjmiddhdapjpbgeoc
Descrição Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email
Tamanho do Arquivo 17.35 KB
Contagem de Instalações 885,631
Versão Atual 1.16
Última Atualização 2013-06-25
Data de Publicação 2013-06-25
Classificação 4.01/5 Total de 4165 Avaliações
Desenvolvedor [email protected]
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Send from Gmail (by Google)",
    "version": "1.16",
    "description": "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "mailto.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/*.google.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/gmail-extension-19.png",
        "default_title": "Send this link with Gmail"
    },
    "icons": {
        "128": "images\/gmail-extension-128.png",
        "64": "images\/gmail-extension-64.png",
        "32": "images\/gmail-extension-32.png",
        "16": "images\/gmail-extension-16.png"
    }
}