I hate mailto

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

Vad är I hate mailto?

I hate mailto är en Chrome-tillägg utvecklad av tekeste.kidanu, och dess huvudfunktion är "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".

Tilläggsskärmbilder

Ladda ner I hate mailto-förlängningens CRX-fil

Ladda ner I hate mailto-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn I hate mailto I hate mailto
ID belceepkbpkcofbpojmfkmliaimbodgn
Officiell webbadress https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn
Beskrivning Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
Filstorlek 101 KB
Antal Installationer 112
Aktuell Version 1.0
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare tekeste.kidanu
Betalningssätt free
Tilläggswebbplats http://ihatemailto.com
Hjälpsida URL https://airtable.com/shrJ8ILiayAYCFd5V
Stödda Språk 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"
            ]
        }
    ]
}