Stop YouTube Hover Previews

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

Stop YouTube Hover Previews क्या है?

Stop YouTube Hover Previews https://davidschiller.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disable the video previews that play when you hover over a video thumbnail on YouTube"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stop YouTube Hover Previews एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Stop YouTube Hover Previews Stop YouTube Hover Previews
ID amfcggbbflmkdaocjifopjpjmbhnkloo
आधिकारिक URL https://chromewebstore.google.com/detail/stop-youtube-hover-previe/amfcggbbflmkdaocjifopjpjmbhnkloo
विवरण Disable the video previews that play when you hover over a video thumbnail on YouTube
फ़ाइल का आकार 54.22 KB
स्थापना संख्या 176
वर्तमान संस्करण 2.2
अंतिम अपडेट 2024-01-30
प्रकाशन तिथि 2023-11-08
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर https://davidschiller.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://davidschiller.net/stop-hover-previews.html
सहायता पृष्ठ URL https://github.com/dschil138/better-youtube-hover-play
समर्थित भाषाएँ 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"
    }
}