YouTubeHover

A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.

YouTubeHover क्या है?

YouTubeHover Sukrit Chhabra द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube."।

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

screenshot
screenshot
screenshot

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

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

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

                        You can preview videos by hovering on their thumbnails. You can choose the settings that work best for you from the options page.

Note: The extension does not collect any user data (browsing or otherwise) from youtube.com.

Please be sure to leave a review or any feedback you have :)                    

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

नाम YouTubeHover YouTubeHover
ID ojbkdiobfdncjfbcmolchhkmcnmhobog
आधिकारिक URL https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog
विवरण A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
फ़ाइल का आकार 8.63 MB
स्थापना संख्या 479
वर्तमान संस्करण 0.1.12
अंतिम अपडेट 2018-02-27
प्रकाशन तिथि 2018-02-27
रेटिंग 3.91/5 कुल 23 रेटिंग्स
डेवलपर Sukrit Chhabra
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/sukritchhabra/YouTubeHover
सहायता पृष्ठ URL https://github.com/sukritchhabra/YouTubeHover/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTubeHover",
    "description": "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.",
    "version": "0.1.12",
    "author": "Sukrit Chhabra",
    "browser_action": {
        "default_icon": "imgs\/touch\/icon_96.png",
        "default_title": "YouTubeHover"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "analytics.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "iframe_api.js",
                "widgetAPI.js",
                "options\/defaultSettings.js",
                "content.js",
                "controllers\/controllers.min.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/s.ytimg.com\/; object-src 'self'"
}