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文件

下載Gmail Unsubscribe擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}