YouTube Markup
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…
Was ist YouTube Markup?
YouTube Markup ist eine Chrome-Erweiterung, die von Umut Korkmaz entwickelt wurde, und ihr Hauptmerkmal ist "You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…".
Erweiterungsscreenshots
YouTube Markup-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Markup-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 use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational video, you can mark the minute where something you are interested in is located, so that you can quickly find what you are looking for when you look at the same educational video again.
Grundlegende Informationen zur Erweiterung
Name | YouTube Markup |
ID | emhjhcepnjieabmcmioendnlpbbhlnbn |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn |
Beschreibung | You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational… |
Dateigröße | 26.09 KB |
Installationsanzahl | 46 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2023-03-02 |
Veröffentlichungsdatum | 2022-09-06 |
Bewertung | 5.00/5 Insgesamt 10 Bewertungen |
Entwickler | Umut Korkmaz |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/umutkorkmaaz/youtube-marker |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Markup", "version": "1.1.1", "icons": { "16": ".\/assets\/icon\/youtube-markup-16x16.png", "48": ".\/assets\/icon\/youtube-markup-48x48.png", "128": ".\/assets\/icon\/youtube-markup-128x128.png" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": ".\/assets\/js\/background.min.js" }, "action": { "default_title": "YouTube Markup", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ ".\/assets\/js\/content.min.js" ], "css": [ ".\/assets\/css\/all.min.css" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |