Remove Cookies For Site
A Chrome extension to remove all cookies for the current site.
Remove Cookies For Site란 무엇입니까?
Remove Cookies For Site은(는) nestor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to remove all cookies for the current site."입니다.
확장 프로그램 스크린샷
Remove Cookies For Site 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Click the broken cookie and all cookies for the current site will be deleted.
확장 프로그램 기본 정보
이름 | |
ID | lmfdblomdpkcniknaenceeogpgepocmm |
공식 URL | https://chromewebstore.google.com/detail/remove-cookies-for-site/lmfdblomdpkcniknaenceeogpgepocmm |
설명 | A Chrome extension to remove all cookies for the current site. |
파일 크기 | 412 KB |
설치 횟수 | 35,152 |
현재 버전 | 1.7 |
최근 업데이트 | 2023-06-27 |
출시 날짜 | 2016-06-04 |
평점 | 3.56/5 총 180 개의 평점 |
개발자 | nestor |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | http://thinkinginsoftware.blogspot.com/2010/03/chrome-extension-to-remove-cookies-for.html |
개인정보 보호 정책 페이지 URL | http://thinkinginsoftware.blogspot.com/2010/03/chrome-extension-to-remove-cookies-for.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove Cookies For Site", "version": "1.7", "description": "A Chrome extension to remove all cookies for the current site.", "permissions": [ "cookies" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "cookie_handler.js" }, "icons": { "48": "broken-cookie48.png", "128": "broken-cookie128.png" }, "action": { "default_icon": { "48": "broken-cookie48.png", "128": "broken-cookie128.png" } } } |