Cookie Glasses
Show consent registered by cookie banners of IAB Europe's Transparency & Consent Framework
Cookie Glasses란 무엇입니까?
Cookie Glasses은(는) celestin.matte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show consent registered by cookie banners of IAB Europe's Transparency & Consent Framework"입니다.
확장 프로그램 스크린샷
Cookie Glasses 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*** OUTDATED *** This extension only handles TCFv1 and is therefore obsolete unless work is done to integrate related pull request on github. Project is currently abandoned. This browser extension shows you whether the consent registered by some cookie banners corresponds to your choice. It queries Consent Management Providers (CMPs) of IAB Europe's Transparency & Consent Framework (TCF) as a third party (like advertisers), making it possible to see consent set by CMPs in real time. In other words, you can see whether consent registered by cookie banners is actually the consent you gave. Will only work with cookie banners of IAB Europe's TCF. See the presentation of our study of the TCF: https://www-sop.inria.fr/members/Nataliia.Bielova/cookiebanners/
확장 프로그램 기본 정보
이름 | Cookie Glasses |
ID | gncnjghkclkhpkfhghcbobednpchjifk |
공식 URL | https://chromewebstore.google.com/detail/cookie-glasses/gncnjghkclkhpkfhghcbobednpchjifk |
설명 | Show consent registered by cookie banners of IAB Europe's Transparency & Consent Framework |
파일 크기 | 54.21 KB |
설치 횟수 | 275 |
현재 버전 | 1.1.5 |
최근 업데이트 | 2023-06-23 |
출시 날짜 | 2020-04-08 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | celestin.matte |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Perdu/Cookie-Glasses |
도움말 페이지 URL | https://github.com/Perdu/Cookie-Glasses/issues |
개인정보 보호 정책 페이지 URL | https://ploudseeker.com/privacy_policy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookie Glasses", "version": "1.1.5", "author": "C\u00e9lestin Matte", "description": "Show consent registered by cookie banners of IAB Europe's Transparency & Consent Framework", "permissions": [ "activeTab", "storage", "https:\/\/vendorlist.consensu.org\/v-*\/vendorlist.json" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_scripts\/uCookie.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "popup\/lib.js", "popup\/IAB_CMP_list_full.js", "popup\/popup.js" ] }, "browser_action": { "default_icon": { "19": "button\/19.png", "38": "button\/38.png" }, "default_title": "Cookie Glasses", "default_popup": "popup\/ucookie.html" } } |