YouTubeHover

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

Was ist YouTubeHover?

YouTubeHover ist eine Chrome-Erweiterung, die von Sukrit Chhabra entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTubeHover-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTubeHover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTubeHover YouTubeHover
ID ojbkdiobfdncjfbcmolchhkmcnmhobog
Offizielle URL https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog
Beschreibung A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
Dateigröße 8.63 MB
Installationsanzahl 479
Aktuelle Version 0.1.12
Letztes Update 2018-02-27
Veröffentlichungsdatum 2018-02-27
Bewertung 3.91/5 Insgesamt 23 Bewertungen
Entwickler Sukrit Chhabra
Zahlungsart free
Erweiterungswebsite https://github.com/sukritchhabra/YouTubeHover
Hilfeseite URL https://github.com/sukritchhabra/YouTubeHover/issues
Unterstützte Sprachen 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'"
}