Always active Window - Always Visible

Pretend that all browser windows are active by spoofing the visibility state event and more!

Always active Window - Always Visibleคืออะไร?

Always active Window - Always Visible เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brian.girko และคุณลักษณะหลักของมันคือ "Pretend that all browser windows are active by spoofing the visibility state event and more!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Always active Window - Always Visible

ดาวน์โหลดไฟล์ส่วนขยาย Always active Window - Always Visible ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension protects against web pages tracking the activity state of the page. Some websites use this track to only offer services when the tab is active. By installing this extension a small script is injected into every webpage which overwrites the "document.visibilityState", and "document.hidden" properties to pretend the tab is always in the active state (document.visibilityState = 'visible' and document.hidden = false). 

This is useful for the webpages that check your visibility state before loading resources like many music webpages. By installing this extension even if the page is opened in the background page, the player will start immediately like the page is loaded on an active tab. 

Supported Trackings:
document.mozHidden (only on Firefox browser)
document.webkitHidden (only on Chromium browsers)

Supported Events:
1. visibilitychange
2. webkitvisibilitychange (only on Chromium browsers)
3. mozvisibilitychange (only on Firefox browser)
4. blur (some websites require the user to keep the tab focused)
5. mouseleave (some websites use this method to make sure the user pointer is inside the window)

Notes:
At the moment there is no exception list, so the extension injects the script on all HTTP and local HTML pages. You need to disable the extension from the options page if you need to bypass the default always active behavior. On Chromium browsers, you can also limit the script injection to a few hostnames by using the right-click context menu item called "This Can Read and Change Site Data" over the browser action button.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Always active Window - Always Visible Always active Window - Always Visible
ID ehllkhjndgnlokhomdlhgbineffifcbj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/always-active-window-alwa/ehllkhjndgnlokhomdlhgbineffifcbj
คำอธิบาย Pretend that all browser windows are active by spoofing the visibility state event and more!
ขนาดไฟล์ 49.56 KB
จำนวนการติดตั้ง 144,542
เวอร์ชันปัจจุบัน 0.3.2
อัปเดตครั้งล่าสุด 2023-08-21
วันที่เผยแพร่ 2019-10-13
คะแนน 4.09/5 รวมทั้งหมด 95 คะแนน
ผู้พัฒนา brian.girko
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/always-active.html
URL หน้าช่วยเหลือ https://webextension.org/listing/always-active.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.3.2",
    "name": "Always active Window - Always Visible",
    "description": "Pretend that all browser windows are active by spoofing the visibility state event and more!",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": [],
    "homepage_url": "https:\/\/webextension.org\/listing\/always-active.html",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "19": "\/data\/icons\/19.png",
        "32": "\/data\/icons\/32.png",
        "38": "\/data\/icons\/38.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"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html"
    }
}