YouTubeHover

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

Cos'è YouTubeHover?

YouTubeHover è un'estensione di Chrome sviluppata da Sukrit Chhabra, e la sua funzione principale è "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTubeHover

Scarica i file di estensione YouTubeHover in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome YouTubeHover YouTubeHover
ID ojbkdiobfdncjfbcmolchhkmcnmhobog
URL Ufficiale https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog
Descrizione A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
Dimensione del File 8.63 MB
Conteggio Installazioni 479
Versione Corrente 0.1.12
Ultimo Aggiornamento 2018-02-27
Data di Pubblicazione 2018-02-27
Valutazione 3.91/5 Totale 23 Valutazioni
Sviluppatore Sukrit Chhabra
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sukritchhabra/YouTubeHover
URL della Pagina di Aiuto https://github.com/sukritchhabra/YouTubeHover/issues
Lingue Supportate 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'"
}