Gmail Unsubscribe

A chrome extension to unsubscribe emails in gmail

Gmail Unsubscribeคืออะไร?

Gmail Unsubscribe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gordalina และคุณลักษณะหลักของมันคือ "A chrome extension to unsubscribe emails in gmail"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Unsubscribe

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}