YouTubeHover

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

Qu'est-ce que YouTubeHover ?

YouTubeHover est une extension Chrome développée par Sukrit Chhabra, et sa fonction principale est "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTubeHover

Téléchargez les fichiers d'extension YouTubeHover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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 :)                    

Informations de Base sur l'Extension

Nom YouTubeHover YouTubeHover
ID ojbkdiobfdncjfbcmolchhkmcnmhobog
URL Officiel https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog
Description A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
Taille du Fichier 8.63 MB
Nombre d'Installations 479
Version Actuelle 0.1.12
Dernière Mise à Jour 2018-02-27
Date de Publication 2018-02-27
Évaluation 3.91/5 Total 23 Évaluations
Développeur Sukrit Chhabra
Type de Paiement free
Site Web de l'Extension https://github.com/sukritchhabra/YouTubeHover
URL de la Page d'Aide https://github.com/sukritchhabra/YouTubeHover/issues
Langues Prises en Charge 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'"
}