Mitbbs Fake Post Filter

Filter fake post links for ads in mitbbs page.

Mitbbs Fake Post Filterคืออะไร?

Mitbbs Fake Post Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Coder และคุณลักษณะหลักของมันคือ "Filter fake post links for ads in mitbbs page."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mitbbs Fake Post Filter

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

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

                        For mitbbs.com only, the extension is used to block the links to fake posts that lead to ads. It also block posts from known ID that promote fake posts.

巨烦mitbbs在首页放一些假的帖子链接,欺骗用户点击广告,还有不少坑王老是弄些乱七八糟的帖子吸引眼球。用本插件可完全屏蔽这些垃圾信息。                    

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

ชื่อ Mitbbs Fake Post Filter Mitbbs Fake Post Filter
ID pdcljffafafmpnnkampbiioblfkdohhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mitbbs-fake-post-filter/pdcljffafafmpnnkampbiioblfkdohhn
คำอธิบาย Filter fake post links for ads in mitbbs page.
ขนาดไฟล์ 12.3 KB
จำนวนการติดตั้ง 89
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2013-07-24
วันที่เผยแพร่ 2013-07-23
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Coder
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mitbbs Fake Post Filter",
    "version": "1.2",
    "description": "Filter fake post links for ads in mitbbs page.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mitbbs.com\/*",
                "http:\/\/www.mitbbs.com\/*",
                "http:\/\/mitbbs.ca\/*",
                "http:\/\/www.mitbbs.ca\/*",
                "http:\/\/mitbbs.cn\/*",
                "http:\/\/www.mitbbs.cn\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "block.png",
        "default_title": "No more fake Mitbbs post!"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}