Send via Mail

Send Pages or Links via Mail

Send via Mailคืออะไร?

Send via Mail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://alexgutjahr.com และคุณลักษณะหลักของมันคือ "Send Pages or Links via Mail"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Send via Mail

ดาวน์โหลดไฟล์ส่วนขยาย Send via Mail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Send via Mail is a dead-simple extension for Google Chrome, for sending links to your mailbox.

🦩 How does it work?

Send via Mail can be accessed either by its icon in the browser bar, or from the context menu.
When applied to a page, the extension creates a URL using the 'mailto' URI scheme (https://tools.ietf.org/html/rfc6068) pre-filling the subject with the page's title and the body with the page's URL.
When applied to a link, the extension also creates a URL, pre-filling subject and body with the link URL.

The mailto URL is then opened in a new tab, delegating handling to your device.
You might have to configure handling of mailto URLs as is described here https://support.google.com/a/users/answer/9308783?hl=en.

🦩 What permissions does it require?

- "activeTab": Access the active tab's title and URL.
- "contextMenus": Allow using the extension from a context menu action.
- "storage": Store the default email address.

🦩 Is it secure?

Yes. Send via Mail delegates the actual handling to the local email client.
All the settings are only synced with Chrome (given that sync has been enabled),
and never shared with anyone else.

The extension is Open-source Software and available on GitHub https://github.com/alexgutjahr/send-via-mail

🦩 Feedback
If you find the extensions useful or want to provide some feedback, feel free to reach out to me via [email protected].                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Send via Mail Send via Mail
ID odjigmolandcfedhfbcgbdblookpdmgn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/send-via-mail/odjigmolandcfedhfbcgbdblookpdmgn
คำอธิบาย Send Pages or Links via Mail
ขนาดไฟล์ 17.19 KB
จำนวนการติดตั้ง 46
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2021-11-14
วันที่เผยแพร่ 2021-04-14
ผู้พัฒนา http://alexgutjahr.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/alexgutjahr/send-via-mail
URL หน้าช่วยเหลือ https://github.com/alexgutjahr/send-via-mail/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Send via Mail",
    "description": "Send Pages or Links via Mail",
    "version": "1.5",
    "manifest_version": 3,
    "author": "Alex Gutjahr",
    "homepage_url": "https:\/\/github.com\/alexgutjahr\/send-via-mail",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/icon_16x16.png",
            "32": "\/images\/icon_32x32.png",
            "48": "\/images\/icon_48x48.png",
            "128": "\/images\/icon_128x128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon_16x16.png",
        "32": "\/images\/icon_32x32.png",
        "48": "\/images\/icon_48x48.png",
        "128": "\/images\/icon_128x128.png"
    }
}