Pin Buster

Bust those annoying Pinterest promotions!

Pin Busterคืออะไร?

Pin Buster เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tell.dev.tools และคุณลักษณะหลักของมันคือ "Bust those annoying Pinterest promotions!"

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

screenshot

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

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

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

                        Hides those pesky, distracting, overused, poorly targeted promotional pins from your Pinterest feeds.

* Please note that this extension only works if your Pinterest account is set to display in English.

Change Log:

v1.4.3 - Pinterest again changed their DOM structure in an attempt to negate extensions like this. Pin Buster has been adjusted accordingly.

v.1.4.2 - Pinterest changed their DOM structure again. Pin Buster has been adjusted accordingly.

v.1.4.1 - Altered new pin busting implementation since the one from 1.4.0 had unwanted side effects (sorry about that!).

v.1.4.0 - Pinterest tried to outsmart us by getting sneaky with a new DOM structure specifically designed to negate extensions like this. But a workaround has been implemented that should bring back full functionality. 

v1.3.2 - Improved video busting implementation per user feedback. Updated to Manifest V3.

v1.3.1 - Bugfixes to new pin busting implementation.

v1.3.0 - Changes to accommodate new DOM structure on Pinterest that broke the old pin busting implementation.                    

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

ชื่อ Pin Buster Pin Buster
ID djjjonpalhimnnfacohlfljhkifpobfa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pin-buster/djjjonpalhimnnfacohlfljhkifpobfa
คำอธิบาย Bust those annoying Pinterest promotions!
ขนาดไฟล์ 18.48 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 1.4.3
อัปเดตครั้งล่าสุด 2023-11-14
วันที่เผยแพร่ 2020-10-27
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา tell.dev.tools
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pin Buster",
    "version": "1.4.3",
    "description": "Bust those annoying Pinterest promotions!",
    "manifest_version": 3,
    "author": "Tell Konkle ",
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "buster.js"
            ],
            "matches": [
                "*:\/\/*.pinterest.co.kr\/*",
                "*:\/\/*.pinterest.co.uk\/*",
                "*:\/\/*.pinterest.com\/*",
                "*:\/\/*.pinterest.de\/*",
                "*:\/\/*.pinterest.fr\/*",
                "*:\/\/*.pinterest.il\/*",
                "*:\/\/*.pinterest.se\/*",
                "*:\/\/*.pinterest.uk\/*",
                "*:\/\/*.pinterest.us\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.pinterest.co.kr\/*",
        "*:\/\/*.pinterest.co.uk\/*",
        "*:\/\/*.pinterest.com\/*",
        "*:\/\/*.pinterest.de\/*",
        "*:\/\/*.pinterest.fr\/*",
        "*:\/\/*.pinterest.il\/*",
        "*:\/\/*.pinterest.se\/*",
        "*:\/\/*.pinterest.uk\/*",
        "*:\/\/*.pinterest.us\/*"
    ],
    "icons": {
        "16": "icon-16px.png",
        "48": "icon-48px.png",
        "128": "icon-128px.png"
    }
}