Stop YouTube Hover Previews

Disable the video previews that play when you hover over a video thumbnail on YouTube

Stop YouTube Hover Previews là gì?

Stop YouTube Hover Previews là một tiện ích mở rộng Chrome được phát triển bởi https://davidschiller.net, và tính năng chính của nó là "Disable the video previews that play when you hover over a video thumbnail on YouTube".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stop YouTube Hover Previews

Tải xuống các tệp mở rộng Stop YouTube Hover Previews 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

                        Disable the video previews that autoplay any time your mouse hovers over a thumbnail on YouTube (sometimes called "inline playback").

This extension has three modes:

1. DISABLE ONLY FOR SCROLLING
Closest to default YouTube behavior. Previews play as normal but only if you purposefully move your mouse to the video. If your mouse just lands on a video after scrolling, it will not play.

2. PLAY ON LONG CLICK - (Recommended)
Previews don't play on hover, but instead play after a "long click" on the thumbnail. Click and hold down briefly (for about half a second) and the preview will play.

3. COMPLETELY DISABLE
Never play video previews.                    

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

Tên Stop YouTube Hover Previews Stop YouTube Hover Previews
ID amfcggbbflmkdaocjifopjpjmbhnkloo
URL Chính Thức https://chromewebstore.google.com/detail/stop-youtube-hover-previe/amfcggbbflmkdaocjifopjpjmbhnkloo
Mô tả Disable the video previews that play when you hover over a video thumbnail on YouTube
Kích Thước Tệp 54.22 KB
Số Lần Cài Đặt 176
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2024-01-30
Ngày Phát Hành 2023-11-08
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://davidschiller.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://davidschiller.net/stop-hover-previews.html
URL Trang Trợ Giúp https://github.com/dschil138/better-youtube-hover-play
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Stop YouTube Hover Previews",
    "version": "2.2",
    "description": "Disable the video previews that play when you hover over a video thumbnail on YouTube",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    }
}