I hate mailto

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

Qu'est-ce que I hate mailto ?

I hate mailto est une extension Chrome développée par tekeste.kidanu, et sa fonction principale est "Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension I hate mailto

Téléchargez les fichiers d'extension I hate mailto au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom I hate mailto I hate mailto
ID belceepkbpkcofbpojmfkmliaimbodgn
URL Officiel https://chromewebstore.google.com/detail/i-hate-mailto/belceepkbpkcofbpojmfkmliaimbodgn
Description Quickly copy email address from mailto links. Say goodbye to jarring email clients popping up in your face.
Taille du Fichier 101 KB
Nombre d'Installations 112
Version Actuelle 1.0
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 3.50/5 Total 2 Évaluations
Développeur tekeste.kidanu
Type de Paiement free
Site Web de l'Extension http://ihatemailto.com
URL de la Page d'Aide https://airtable.com/shrJ8ILiayAYCFd5V
Langues Prises en Charge 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"
            ]
        }
    ]
}