Ad blocker
Removes the ads
Ad blockerคืออะไร?
Ad blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KarthiTech และคุณลักษณะหลักของมันคือ "Removes the ads"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ad blocker
ดาวน์โหลดไฟล์ส่วนขยาย Ad blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a simple tool to remove advertisements in a web page. SWITCH ON or OFF the Ad blocker with a simple click. The number of advertisements blocked in a website, will be displayed over extension icon. Ad blocker will monitor a website periodically and remove the dynamically loaded advertisements.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
คำอธิบาย | Removes the ads |
ขนาดไฟล์ | 9.58 KB |
จำนวนการติดตั้ง | 6,452 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2021-09-13 |
วันที่เผยแพร่ | 2019-06-28 |
คะแนน | 3.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | KarthiTech |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ad blocker", "description": "Removes the ads", "version": "1.0.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "incognito": "split", "browser_action": { "default_icon": "on.png", "default_title": "Remove the Ads" }, "background": { "scripts": [ "bm.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pm.js" ] } ] } |