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
公式URL 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]
Eメール [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"
    }
}