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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}