Send from Gmail - Share a Link Via Email

provides a button which allows you to send a webpage URL (link) via email.

Send from Gmail - Share a Link Via Email란 무엇입니까?

Send from Gmail - Share a Link Via Email은(는) Social Analyzer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "provides a button which allows you to send a webpage URL (link) via email."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Send from Gmail - Share a Link Via Email 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        It 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. All you have to do is choose a mail recipient and click send.

features:
➔ provides a fast way to quickly send a link to the current website per email to somebody.
➔ works with local Mail clients and WebMail accounts like GMail, Hotmail, etc.
➔ create a new mail window on current page.

For setting the domain name of your "Google Apps for your domain" account, click Options.
options features:
➔ set the domain name of your google account
➔ set a prefix for the subject field when sending from Gmail

Note that if you use a local mail client a default Mail client must be registered on the computer.

this extension was made by third party developers and it is NOT made by Gmail Inc.                    

확장 프로그램 기본 정보

이름 Send from Gmail - Share a Link Via Email Send from Gmail - Share a Link Via Email
ID egefdkphhgpfilgcaejconjganlfehif
공식 URL https://chromewebstore.google.com/detail/send-from-gmail-share-a-l/egefdkphhgpfilgcaejconjganlfehif
설명 provides a button which allows you to send a webpage URL (link) via email.
파일 크기 2.09 MB
설치 횟수 3,000
현재 버전 1.0.5
최근 업데이트 2023-03-31
출시 날짜 2022-08-27
평점 4.93/5 총 61 개의 평점
개발자 Social Analyzer
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://gmplus.io/gmplus-private-policy
지원되는 언어 en,en-GB,en-US,fr,tr,da,et,es,hr,lv,lt,pt-BR,pt-PT,sk,sl,cs,bg,ru,gu,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "version": "1.0.5",
    "default_locale": "en",
    "homepage_url": "https:\/\/gmplus.io?utm_source=gm_send",
    "description": "provides a button which allows you to send a webpage URL (link) via email.",
    "icons": {
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icons\/128.png",
        "default_title": "Send this link with Gmail"
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/*.google.com\/"
    ]
}