mailto:me

Mail websites to yourself for archiving or reading them later

什麼是mailto:me?

mailto:me是由h3nn3s開發的Chrome擴展程式,該擴展的主要功能是“Mail websites to yourself for archiving or reading them later”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載mailto:me擴展crx文件

下載mailto:me擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        mailto:me is a browser extension for Firefox and Chrome to email websites to yourself. If you want, it's a poor man's read-later system that relies on nothing more than your email inbox.

Features include:

- Configurable and persistent recipient address
- Mail subject extracted from page title / content
- Mail body supports:
  - Plain page link
  - Reader-view-like page content in markdown format
  - Reader-view-like page content in HTML format

mailto:me generates mailto:// hyperlinks and lets the browser open them in your email client of choice. Note that in order for the extension to work correctly it is essential that you have configured your web or local mail client as standard application for mailto:// links in the browser settings.                    

擴展基本資訊

名稱 mailto:me mailto:me
ID bcomoaoagbblmlcakoadkmnndpooiefe
官方網址 https://chromewebstore.google.com/detail/mailtome/bcomoaoagbblmlcakoadkmnndpooiefe
簡介 Mail websites to yourself for archiving or reading them later
檔案大小 61.52 KB
安裝次數 63
目前版本 0.2.0
更新時間 2021-08-24
上架時間 2020-11-11
評分 3.00/5 共 2 次評分
開發者 h3nn3s
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Johennes/mailto-me
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "mailto:me",
    "version": "0.2.0",
    "description": "Mail websites to yourself for archiving or reading them later",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/action-16.png",
            "19": "icons\/action-19.png",
            "32": "icons\/action-32.png",
            "38": "icons\/action-38.png"
        },
        "default_title": "mailto:me"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "mailto@me",
            "strict_min_version": "50.0"
        }
    }
}