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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Disable Page Visibility API

قم بتنزيل ملفات الامتداد Disable Page Visibility API بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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"
            ]
        }
    ]
}