YouTube Watch Thumbnails

Display a thumbnail of the video next to the channel icon on the YouTube video playback page.

Was ist YouTube Watch Thumbnails?

YouTube Watch Thumbnails ist eine Chrome-Erweiterung, die von mosunset entwickelt wurde, und ihr Hauptmerkmal ist "Display a thumbnail of the video next to the channel icon on the YouTube video playback page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

YouTube Watch Thumbnails-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Watch Thumbnails-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

                        Click once on the extension icon and the thumbnail image hops up.

Clicking on an image opens the largest thumbnail image in a new tab.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Watch Thumbnails YouTube Watch Thumbnails
ID aobeafpjgdgakpagffmlkfeognaiigci
Offizielle URL https://chromewebstore.google.com/detail/youtube-watch-thumbnails/aobeafpjgdgakpagffmlkfeognaiigci
Beschreibung Display a thumbnail of the video next to the channel icon on the YouTube video playback page.
Dateigröße 113 KB
Installationsanzahl 4,804
Aktuelle Version 3.3.1
Letztes Update 2023-09-02
Veröffentlichungsdatum 2022-09-13
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler mosunset
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen id,en,fr,es,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_Name__",
    "description": "__MSG_Description__",
    "version": "3.3.1",
    "default_locale": "en",
    "icons": {
        "512": "img\/yicon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "img\/yicon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/ycontent_script.js"
            ],
            "css": [
                "css\/ycontent_script.css"
            ],
            "all_frames": true
        }
    ]
}