Gmail Unsubscribe

A chrome extension to unsubscribe emails in gmail

Co to jest Gmail Unsubscribe?

Gmail Unsubscribe to rozszerzenie Chrome opracowane przez gordalina, a jego główną funkcją jest „A chrome extension to unsubscribe emails in gmail”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Gmail Unsubscribe

Pobierz pliki rozszerzeń Gmail Unsubscribe w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail Unsubscribe Gmail Unsubscribe
ID gkakfbcilfllnomafmgaekkhcmogalah
Oficjalny URL https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah
Opis A chrome extension to unsubscribe emails in gmail
Rozmiar pliku 17.2 KB
Liczba instalacji 1,549
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2024-01-04
Data Publikacji 2021-11-09
Ocena 3.67/5 Łącznie 6 Oceny
Deweloper gordalina
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gordalina/gmail-unsubscribe
Adres URL Strony Pomocy https://github.com/gordalina/gmail-unsubscribe/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}