Cookie Popup Blocker
Get rid of annoying cookie popups without agreeing to the terms
Cookie Popup Blocker란 무엇입니까?
Cookie Popup Blocker은(는) http://cookiepopupblocker.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get rid of annoying cookie popups without agreeing to the terms"입니다.
확장 프로그램 스크린샷
Cookie Popup Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Cookie Popup Blocker automatically removes annoying cookie popups that appear when you visit a page without agreeing to the terms. This package does not maintain a big white list and basically focuses on the most aggressive cookie popups that block the page with a full page popup needing you to agree before being able to view and scroll the content. In case Cookie Popup Blocker incorrectly removes part of the page, you can exclude the website from being processed by opening the extension popup and clicking Exclude This Website. This is an open source product and you can find the source code on github at: https://github.com/n4cr/cookiepopupblocker You can also follow me on twitter @n4cr.
확장 프로그램 기본 정보
이름 | |
ID | ibmamncbgbgjgnncigjlfchmflhdagkc |
공식 URL | https://chrome.google.com/webstore/detail/cookie-popup-blocker/ibmamncbgbgjgnncigjlfchmflhdagkc |
설명 | Get rid of annoying cookie popups without agreeing to the terms |
파일 크기 | 437 KB |
설치 횟수 | 457 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2021-06-16 |
출시 날짜 | 2021-05-19 |
평점 | 2.67/5 총 3 개의 평점 |
개발자 | http://cookiepopupblocker.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cookiepopupblocker.carrd.co |
도움말 페이지 URL | http://twitter.com/n4cr |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookie Popup Blocker", "version": "0.0.3", "manifest_version": 2, "description": "Get rid of annoying cookie popups without agreeing to the terms", "homepage_url": "http:\/\/cookiepopupblocker.com", "icons": { "16": "icons\/cookie16.png", "48": "icons\/cookie48.png", "128": "icons\/cookie128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/cookie48.png", "default_title": "Cookie Popup Blocker", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ], "css": [ "src\/inject\/inject.css" ], "run_at": "document_end" } ] } |