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\/*" ] } ] } |