Gmail Unsubscribe
A chrome extension to unsubscribe emails in gmail
Cos'è Gmail Unsubscribe?
Gmail Unsubscribe è un'estensione di Chrome sviluppata da gordalina, e la sua funzione principale è "A chrome extension to unsubscribe emails in gmail".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gmail Unsubscribe
Scarica i file di estensione Gmail Unsubscribe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | gkakfbcilfllnomafmgaekkhcmogalah |
| URL Ufficiale | https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah |
| Descrizione | A chrome extension to unsubscribe emails in gmail |
| Dimensione del File | 17.2 KB |
| Conteggio Installazioni | 1,549 |
| Versione Corrente | 0.1.1 |
| Ultimo Aggiornamento | 2024-01-04 |
| Data di Pubblicazione | 2021-11-09 |
| Valutazione | 3.67/5 Totale 6 Valutazioni |
| Sviluppatore | gordalina |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/gordalina/gmail-unsubscribe |
| URL della Pagina di Aiuto | https://github.com/gordalina/gmail-unsubscribe/issues |
| Lingue Supportate | 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"
]
}
]
} | |