Anti Popup
Remove all annoying popups.
Anti Popup란 무엇입니까?
Anti Popup은(는) nick.031977에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove all annoying popups."입니다.
확장 프로그램 스크린샷
Anti Popup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |