Gmail Unsubscribe

A chrome extension to unsubscribe emails in gmail

Gmail Unsubscribe란 무엇입니까?

Gmail Unsubscribe은(는) gordalina에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to unsubscribe emails in gmail"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gmail Unsubscribe 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Gmail Unsubscribe Gmail Unsubscribe
ID gkakfbcilfllnomafmgaekkhcmogalah
공식 URL https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah
설명 A chrome extension to unsubscribe emails in gmail
파일 크기 17.2 KB
설치 횟수 1,549
현재 버전 0.1.1
최근 업데이트 2024-01-04
출시 날짜 2021-11-09
평점 3.67/5 총 6 개의 평점
개발자 gordalina
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gordalina/gmail-unsubscribe
도움말 페이지 URL https://github.com/gordalina/gmail-unsubscribe/issues
지원되는 언어 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"
            ]
        }
    ]
}