Disable Page Visibility API
Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Disable Page Visibility API란 무엇입니까?
Disable Page Visibility API은(는) Marvin Schopf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window."입니다.
확장 프로그램 스크린샷
Disable Page Visibility API 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This addon disables the Page Visibility API. This prevents, for example, video conferencing systems from detecting whether you are in their tab or in another window. The source code of this add-on can be found here: https://github.com/marvinschopf/disable-page-visibility-api The addon's icon is a derivative of "Expand New Tab" by Syafiqa Fickle from the Noun Project, used under CC BY.
확장 프로그램 기본 정보
이름 | Disable Page Visibility API |
ID | eecfoibnnhheckhfokpihgefmlnenofb |
공식 URL | https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb |
설명 | Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window. |
파일 크기 | 16.67 KB |
설치 횟수 | 13,784 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-02-02 |
출시 날짜 | 2021-02-02 |
평점 | 4.16/5 총 32 개의 평점 |
개발자 | Marvin Schopf |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Disable Page Visibility API", "version": "1.0.1", "author": "Marvin Schopf", "description": "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "disable.js" ] } ] } |