Anti Popup
Remove all annoying popups.
Anti Popupคืออะไร?
Anti Popup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nick.031977 และคุณลักษณะหลักของมันคือ "Remove all annoying popups."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Anti Popup
ดาวน์โหลดไฟล์ส่วนขยาย Anti Popup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tired of annoying popup windows which asking for agreeing cookies? Or popups telling you to disable your ad blocker? Sometimes they even not allows you to scroll the page! This extension remove this types of popups and re-enables scrolling functionality of the pages. There is different options that you can specify through extension's options. An API for getting blacklisted HTML elements (by ID and/or class name) is provided. Sometimes extension can block popups that aren't parasite ones because they behavior is suspicious. In this case you can just disable extension - I will improve it regularly.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jncimfidjcmgckdflmhhafeolgcjpfgk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/anti-popup/jncimfidjcmgckdflmhhafeolgcjpfgk |
คำอธิบาย | Remove all annoying popups. |
ขนาดไฟล์ | 21.19 KB |
จำนวนการติดตั้ง | 125 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2022-07-06 |
วันที่เผยแพร่ | 2022-06-14 |
ผู้พัฒนา | nick.031977 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Anti Popup", "version": "1.1.1", "description": "Remove all annoying popups.", "manifest_version": 3, "author": "Nikolay Georgiev", "action": { "default_popup": "index.html", "default_title": "Anti Popup" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "clear-popups.js" ] } ], "icons": { "16": "ap16.png", "32": "ap32.png", "48": "ap48.png", "128": "ap128.png" } } |