Unsubscribe Button

Unsubscribe from emails with one click.

Unsubscribe Buttonคืออะไร?

Unsubscribe Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://labs.kortina.net และคุณลักษณะหลักของมันคือ "Unsubscribe from emails with one click."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Unsubscribe Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        NEW! Now you can use the keyboard shortcut "$" instead of clicking the Unsubscribe Button in your address bar.  Boom!

* Is your inbox overloaded with marketing e-newsletters?
* Tired of spending too much of your PRECIOUS working hours trying to find how to unsubscribe from every unwanted e-subscription?
* Sick of SCROLLING to the bottom of e-messages just to squint your eyes reading TINY text searching for HIDDEN unsubscribe links at the bottom of emails?

"Unsubscribe Button" (TM) for Chrome adds an easy to use, ONE TAP unsubscribe button to your address bar whenever you browse your Gmail messages.

Try it today, for FREE, and save yourself uncountable hours of vexation.

New in v 1.0.7: track how many newsletters you have unsubscribed from! Share with friends on Facebook!

New in v 1.0.6: if Gmail provides an unsubscribe button at top of email, this extension will first try to use that, preventing you from having to visit a 3rd party website to complete the unsubscribe.

Submit bugs and feature requests at:

https://github.com/kortina/unsubscribe-button-chrome-extension/issues

Download here:

https://chrome.google.com/webstore/detail/unsubscribe-button/hopdblcmcfipdidllgkjflmaopndofmp?hl=en                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unsubscribe Button Unsubscribe Button
ID hopdblcmcfipdidllgkjflmaopndofmp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unsubscribe-button/hopdblcmcfipdidllgkjflmaopndofmp
คำอธิบาย Unsubscribe from emails with one click.
ขนาดไฟล์ 1.29 MB
จำนวนการติดตั้ง 2,438
เวอร์ชันปัจจุบัน 1.0.10
อัปเดตครั้งล่าสุด 2014-12-17
วันที่เผยแพร่ 2014-12-17
คะแนน 3.09/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา https://labs.kortina.net
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/kortina/unsubscribe-button-chrome-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unsubscribe Button",
    "description": "Unsubscribe from emails with one click.",
    "version": "1.0.10",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/unsubscribe16.png",
        "48": "images\/unsubscribe48.png",
        "128": "images\/unsubscribe128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "images\/unsubscribe19.png",
            "38": "images\/unsubscribe38.png"
        },
        "default_title": "Unsubscribe from emails like this"
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/mail.google.com\/*",
        "https:\/\/mail.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}