I hate mailto

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

Hvad er I hate mailto?

I hate mailto er en Chrome-udvidelse udviklet af tekeste.kidanu, og dens hovedfunktion er "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".

Udvidelsesskærmbilleder

Download I hate mailto-udvidelses-CRX-fil

Download I hate mailto-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn I hate mailto I hate mailto
ID belceepkbpkcofbpojmfkmliaimbodgn
Officiel URL https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn
Beskrivelse Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
Filstørrelse 101 KB
Antal Installationer 112
Nuværende Version 1.0
Senest Opdateret 2019-03-08
Udgivelsesdato 2019-03-08
Bedømmelse 3.50/5 Samlet 2 Bedømmelser
Udvikler tekeste.kidanu
Betalingsmetode free
Udvidelseswebsted http://ihatemailto.com
Hjælpeside-URL https://airtable.com/shrJ8ILiayAYCFd5V
Understøttede Sprog 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"
            ]
        }
    ]
}