Opt-out for Analytics™
Prevents the Google Analytics and Tag Manager's JavaScript APIs from collecting data and recording the user
Opt-out for Analytics™란 무엇입니까?
Opt-out for Analytics™은(는) emano.waldeck에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevents the Google Analytics and Tag Manager's JavaScript APIs from collecting data and recording the user"입니다.
확장 프로그램 스크린샷
Opt-out for Analytics™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds an object to all web pages that the user is browsing to request from Analytics API to not track the user. Unlike adblocker scripts that block web requests, this extension peacefully requests to not being recorded from "ga.js", "analytics.js", and "dc.js", that's it! This extension works for both Google Analytics and Tag Manager scripts, and prevent both of these popular analytic scripts from collecting user data. When a request is being rejected, the page action button becomes colorful. Place the mouse over the button to see the total number of rejected requests.
확장 프로그램 기본 정보
이름 | Opt-out for Analytics™ |
ID | moecnjhimbbgdgakdcbopgkpjmcemhhe |
공식 URL | https://chromewebstore.google.com/detail/opt-out-for-analytics/moecnjhimbbgdgakdcbopgkpjmcemhhe |
설명 | Prevents the Google Analytics and Tag Manager's JavaScript APIs from collecting data and recording the user |
파일 크기 | 81.4 KB |
설치 횟수 | 975 |
현재 버전 | 0.1.5 |
최근 업데이트 | 2021-08-08 |
출시 날짜 | 2019-12-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | emano.waldeck |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Emano-Waldeck/Opt-Out/ |
도움말 페이지 URL | https://github.com/Emano-Waldeck/Opt-Out/ |
지원되는 언어 | de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.5", "name": "Opt-out for Analytics\u2122", "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "permissions": [ "storage" ], "homepage_url": "https:\/\/add0n.com\/opt-out.html", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "data\/inject.js" ], "run_at": "document_start", "all_frames": true } ], "browser_action": [] } |