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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marvin Schopf และคุณลักษณะหลักของมันคือ "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable Page Visibility API
ดาวน์โหลดไฟล์ส่วนขยาย Disable Page Visibility API ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |