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

Vad är Send from Gmail (by Google)?

Send from Gmail (by Google) är en Chrome-tillägg utvecklad av [email protected], och dess huvudfunktion är "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Send from Gmail (by Google)-förlängningens CRX-fil

Ladda ner Send from Gmail (by Google)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Send from Gmail (by Google) Send from Gmail (by Google)
ID pgphcomnlaojlmmcjmiddhdapjpbgeoc
Officiell webbadress https://chromewebstore.google.com/detail/send-from-gmail-by-google/pgphcomnlaojlmmcjmiddhdapjpbgeoc
Beskrivning Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email
Filstorlek 17.35 KB
Antal Installationer 885,631
Aktuell Version 1.16
Senast Uppdaterad 2013-06-25
Publiceringsdatum 2013-06-25
Betyg 4.01/5 Totalt 4165 Betyg
Utvecklare [email protected]
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}