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…
Τι είναι το YouTube Markup;
Το YouTube Markup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Umut Korkmaz, και η κύρια λειτουργία του είναι "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…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube Markup
Λήψη αρχείων επέκτασης YouTube Markup σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube Markup |
ID | emhjhcepnjieabmcmioendnlpbbhlnbn |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn |
Περιγραφή | 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… |
Μέγεθος Αρχείου | 26.09 KB |
Αριθμός Εγκαταστάσεων | 46 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2023-03-02 |
Ημερομηνία Δημοσίευσης | 2022-09-06 |
Αξιολόγηση | 5.00/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | Umut Korkmaz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/umutkorkmaaz/youtube-marker |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |