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

什麼是Send from Gmail (by Google)?

Send from Gmail (by Google)是由[email protected]開發的Chrome擴展程式,該擴展的主要功能是“Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Send from Gmail (by Google)擴展crx文件

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

擴展使用說明

                        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                    

擴展基本資訊

名稱 Send from Gmail (by Google) Send from Gmail (by Google)
ID pgphcomnlaojlmmcjmiddhdapjpbgeoc
官方網址 https://chromewebstore.google.com/detail/send-from-gmail-by-google/pgphcomnlaojlmmcjmiddhdapjpbgeoc
簡介 Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email
檔案大小 17.35 KB
安裝次數 885,631
目前版本 1.16
更新時間 2013-06-25
上架時間 2013-06-25
評分 4.01/5 共 4165 次評分
開發者 [email protected]
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}