Video Mouse Hider

Hides your mouse when idle over videos.

Video Mouse Hiderคืออะไร?

Video Mouse Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xiferdev และคุณลักษณะหลักของมันคือ "Hides your mouse when idle over videos."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Mouse Hider

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

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

                        This extension hides your mouse when idle over videos.  YouTube™ and HBO Max and others have this built-in already.

Supported Websites:
✔ Hulu
✔ Vimeo
✔ Dailymotion
✔ and many more

You can also set a keyboard shortcut to manually hide the cursor (hovering over video or fullscreen not required).

Contact me if there's a specific website you'd like me to add specific timeout settings for.  By default the idle time is set to 2 seconds after the last mouse movement.  YouTube, for example, has a 4 second idle time so that the mouse hides when for the player interface gets hidden too.

⚠️ Troubleshooting and Notes:
▸ It appears that Chrome extensions that hide the mouse cursor require the mouse to be moved after the pages loads.  I haven't found a way around this.
▸ Some website video players resist cursor hiding.  I found a work-around for fullscreen videos but I'm not aware of a solution when videos are not fullscreen.

Want to zoom, rotate, stretch or flip video?  
Check out another extension of mine, Video Transformer:
https://chrome.google.com/webstore/detail/cafdfogfbjpgdmppmdchgcggdepfbndo

Changelog:
1.0.1 (2022-09-09):
▸ possible bugfix for manual shortcut
▸ improved icon size for extension page

1.0:
▸ first version!                    

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

ชื่อ Video Mouse Hider Video Mouse Hider
ID nmoomabnbphlcgjghcagjfkildcmpigi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/video-mouse-hider/nmoomabnbphlcgjghcagjfkildcmpigi
คำอธิบาย Hides your mouse when idle over videos.
ขนาดไฟล์ 13.72 KB
จำนวนการติดตั้ง 130
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-09-13
วันที่เผยแพร่ 2022-09-02
ผู้พัฒนา xiferdev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Mouse Hider",
    "description": "Hides your mouse when idle over videos.",
    "version": "1.0.1",
    "icons": {
        "128": "images\/icon_128.png",
        "48": "images\/icon_48.png",
        "32": "images\/icon_32.png",
        "16": "images\/icon_16.png"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "commands": {
        "reload": {
            "description": "Reload Extension"
        },
        "hide_pointer": {
            "description": "Hide Pointer"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mouse_hider.js"
            ]
        }
    ]
}