YouTube++
This extension shows the publishing or uploading date of related youtube videos in sidebar.
Was ist YouTube++?
YouTube++ ist eine Chrome-Erweiterung, die von divyum entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows the publishing or uploading date of related youtube videos in sidebar.".
Erweiterungsscreenshots
YouTube++-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube++-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
Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.
Grundlegende Informationen zur Erweiterung
Name | YouTube++ |
ID | mbaflkdlneldejanggphlhcepncjfaco |
Offizielle URL | https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco |
Beschreibung | This extension shows the publishing or uploading date of related youtube videos in sidebar. |
Dateigröße | 229 KB |
Installationsanzahl | 2,716 |
Aktuelle Version | 2.3.2 |
Letztes Update | 2019-11-12 |
Veröffentlichungsdatum | 2019-11-11 |
Bewertung | 3.77/5 Insgesamt 52 Bewertungen |
Entwickler | divyum |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube++", "short_name": "YTD", "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.", "version": "2.3.2", "icons": { "48": "image\/icon48.png", "128": "image\/icon128.png" }, "permissions": [ "tabs" ], "background": { "persistent": true, "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "image\/loader_gif.gif" ] } |