I hate mailto

Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.

什么是I hate mailto?

I hate mailto是由tekeste.kidanu开发的Chrome扩展程序,该扩展的主要功能是“Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.”。

扩展截图

下载I hate mailto扩展crx文件

下载I hate mailto扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This handy Google Chrome and Firefox extension will copy the email address to your clipboard from mailto links and stop default mail client which you never use from opening. 
Say goodbye to rage inducing email clients interrupting your work.                    

扩展基本信息

名称 I hate mailto I hate mailto
ID belceepkbpkcofbpojmfkmliaimbodgn
官方URL https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn
简介 Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
文件大小 101 KB
安装次数 112
当前版本 1.0
更新时间 2019-03-08
上架时间 2019-03-08
评分 3.50/5 共2次评分
开发者 tekeste.kidanu
付费类型 free
扩展官网 http://ihatemailto.com
帮助页面URL https://airtable.com/shrJ8ILiayAYCFd5V
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "I hate mailto",
    "description": "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.",
    "version": "1.0",
    "homepage_url": "https:\/\/ihatemailto.com",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "128": "icon128.png"
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "css": [
                "tippy.css",
                "content.css"
            ],
            "js": [
                "tippy.js",
                "bundle.js"
            ]
        }
    ]
}