WhackAMole Ad-Blocker

WhackAMole Ad-Blocker

WhackAMole Ad-Blockerคืออะไร?

WhackAMole Ad-Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chrislaffra.com และคุณลักษณะหลักของมันคือ "WhackAMole Ad-Blocker"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WhackAMole Ad-Blocker

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

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

                        WhackAMole removes ads from websites. To disable WhackAMole for a given site, click on the WhackAMole toolbar icon. When it finds content that looks like an ad, WhackAMole replaces it with an "ad" block. You can click on that to see the original content.

WhackAMole never connects to a server and never inspects the data on the sites you visit. Instead, it looks for elements that look like ads and hides them using a set of builtin rules. If you disable WhackAMole for a given site, that site's URL is stored in the local browser history on your machine. Other than that, WhackAMole does not store any data, does not analyze your sites, and does not track your browsing behavior at all. 

Happy browsing!                    

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

ชื่อ WhackAMole Ad-Blocker WhackAMole Ad-Blocker
ID nipkfonkiamhioacopolknbjdaeejchp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/whackamole-ad-blocker/nipkfonkiamhioacopolknbjdaeejchp
คำอธิบาย WhackAMole Ad-Blocker
ขนาดไฟล์ 41.34 KB
จำนวนการติดตั้ง 496
เวอร์ชันปัจจุบัน 3.10
อัปเดตครั้งล่าสุด 2023-09-11
วันที่เผยแพร่ 2020-01-15
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://chrislaffra.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://chrislaffra.com/whackamole
URL หน้าช่วยเหลือ http://chrislaffra.com/whackamole
URL หน้านโยบายความเป็นส่วนตัว https://chrislaffra.com/privacy.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhackAMole Ad-Blocker",
    "short_name": "WhackAMole",
    "description": "WhackAMole Ad-Blocker",
    "version": "3.10",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "author": "Chris Laffra - [email protected]",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "38": "cross.png"
        },
        "default_title": "Whack A Mole",
        "default_popup": "popup.html"
    },
    "content_security_policy": []
}