Gmail Unsubscribe
A chrome extension to unsubscribe emails in gmail
Qu'est-ce que Gmail Unsubscribe ?
Gmail Unsubscribe est une extension Chrome développée par gordalina, et sa fonction principale est "A chrome extension to unsubscribe emails in gmail".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail Unsubscribe
Téléchargez les fichiers d'extension Gmail Unsubscribe 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
Looking for a more efficient way to unsubscribe to emails? With this extension you can stop them with a single keyboard shortcut! Press Command+U (macOS) or Alt+U (Windows/Linux) when viewing the email. That's it! You can switch the shortcut by visiting chrome://extensions/shortcuts It works on your computer as a chrome extension and no data is sent to any server outside of your computer. It's 100% private.
Informations de Base sur l'Extension
Nom | Gmail Unsubscribe |
ID | gkakfbcilfllnomafmgaekkhcmogalah |
URL Officiel | https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah |
Description | A chrome extension to unsubscribe emails in gmail |
Taille du Fichier | 17.2 KB |
Nombre d'Installations | 1,549 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2024-01-04 |
Date de Publication | 2021-11-09 |
Évaluation | 3.67/5 Total 6 Évaluations |
Développeur | gordalina |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/gordalina/gmail-unsubscribe |
URL de la Page d'Aide | https://github.com/gordalina/gmail-unsubscribe/issues |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to unsubscribe emails in gmail", "version": "0.1.1", "manifest_version": 3, "name": "Gmail Unsubscribe", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "service_worker": "service_worker.bundle.js" }, "commands": { "unsubscribe": { "description": "Unsubscribe from mailing list", "suggested_key": { "default": "Alt+U", "mac": "Command+U" } } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content_script.bundle.js" ] } ] } |