Gmail Unsubscribe
A chrome extension to unsubscribe emails in gmail
Co je Gmail Unsubscribe?
Gmail Unsubscribe je rozšíření Chrome vyvinuté gordalina, a jeho hlavní funkcí je „A chrome extension to unsubscribe emails in gmail“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Gmail Unsubscribe
Stáhněte si soubory rozšíření Gmail Unsubscribe ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Gmail Unsubscribe |
ID | gkakfbcilfllnomafmgaekkhcmogalah |
Oficiální URL | https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah |
Popis | A chrome extension to unsubscribe emails in gmail |
Velikost souboru | 17.2 KB |
Počet instalací | 1,549 |
Aktuální Verze | 0.1.1 |
Poslední Aktualizace | 2024-01-04 |
Datum Vydání | 2021-11-09 |
Hodnocení | 3.67/5 Celkem 6 Hodnocení |
Vývojář | gordalina |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/gordalina/gmail-unsubscribe |
URL Stránky Nápovědy | https://github.com/gordalina/gmail-unsubscribe/issues |
Podporované Jazyky | 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" ] } ] } |