Gmail Unsubscribe

A chrome extension to unsubscribe emails in gmail

Gmail Unsubscribe là gì?

Gmail Unsubscribe là một tiện ích mở rộng Chrome được phát triển bởi gordalina, và tính năng chính của nó là "A chrome extension to unsubscribe emails in gmail".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail Unsubscribe

Tải xuống các tệp mở rộng Gmail Unsubscribe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail Unsubscribe Gmail Unsubscribe
ID gkakfbcilfllnomafmgaekkhcmogalah
URL Chính Thức https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah
Mô tả A chrome extension to unsubscribe emails in gmail
Kích Thước Tệp 17.2 KB
Số Lần Cài Đặt 1,549
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2024-01-04
Ngày Phát Hành 2021-11-09
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển gordalina
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gordalina/gmail-unsubscribe
URL Trang Trợ Giúp https://github.com/gordalina/gmail-unsubscribe/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}