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 là gì?

Disable Page Visibility API là một tiện ích mở rộng Chrome được phát triển bởi Marvin Schopf, và tính năng chính của nó là "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable Page Visibility API

Tải xuống các tệp mở rộng Disable Page Visibility API dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
URL Chính Thức https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Mô tả Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Kích Thước Tệp 16.67 KB
Số Lần Cài Đặt 13,784
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-02-02
Ngày Phát Hành 2021-02-02
Đánh Giá 4.16/5 Tổng số 32 Đánh Giá
Nhà Phát Triển Marvin Schopf
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}