CLF_Blacklist

This extension allows you to hide posts from specified users on the Craigslist Forums

CLF_Blacklistคืออะไร?

CLF_Blacklist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย clf-blacklist และคุณลักษณะหลักของมันคือ "This extension allows you to hide posts from specified users on the Craigslist Forums"

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

screenshot
screenshot

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

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

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

                        Easily block and unblock users on the Craigslist forums by handle.                    

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

ชื่อ CLF_Blacklist CLF_Blacklist
ID aekjnbjmemepgjibomcniadcclaffhhc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/clfblacklist/aekjnbjmemepgjibomcniadcclaffhhc
คำอธิบาย This extension allows you to hide posts from specified users on the Craigslist Forums
ขนาดไฟล์ 8.12 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.5.3
อัปเดตครั้งล่าสุด 2017-03-24
วันที่เผยแพร่ 2017-03-24
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา clf-blacklist
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CLF_Blacklist",
    "description": "This extension allows you to hide posts from specified users on the Craigslist Forums",
    "version": "1.5.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/forums.craigslist.org\/*"
            ],
            "js": [
                "test.js"
            ],
            "css": [
                "clf.css"
            ],
            "all_frames": true
        }
    ]
}