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) là gì?

Send from Gmail (by Google) là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Send from Gmail (by Google)

Tải xuống các tệp mở rộng Send from Gmail (by Google) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Send from Gmail (by Google) Send from Gmail (by Google)
ID pgphcomnlaojlmmcjmiddhdapjpbgeoc
URL Chính Thức https://chromewebstore.google.com/detail/send-from-gmail-by-google/pgphcomnlaojlmmcjmiddhdapjpbgeoc
Mô tả Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email
Kích Thước Tệp 17.35 KB
Số Lần Cài Đặt 885,631
Phiên Bản Hiện Tại 1.16
Cập Nhật Lần Cuối 2013-06-25
Ngày Phát Hành 2013-06-25
Đánh Giá 4.01/5 Tổng số 4165 Đánh Giá
Nhà Phát Triển [email protected]
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}