Youtube Timestamp
Save youtube videos with exact timestamps for later.
Что такое Youtube Timestamp?
Youtube Timestamp - это расширение Chrome, разработанное kirill17910, и его основная функция - "Save youtube videos with exact timestamps for later.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Timestamp
Скачайте файлы расширений Youtube Timestamp в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them. This is an open source project, and all source code can be found on GitHub. https://github.com/kotikkir9/Youtube Changes: 27/12/2022 - Added new animated delete button.
Основная информация о расширении
Название | Youtube Timestamp |
ID | ciognandfojfcelnokkgaapgmafciekl |
Официальный URL | https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl |
Описание | Save youtube videos with exact timestamps for later. |
Размер файла | 11.57 KB |
Количество установок | 179 |
Текущая Версия | 1.1 |
Последнее Обновление | 2022-12-28 |
Дата публикации | 2022-05-24 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | kirill17910 |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/kotikkir9/Youtube |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Timestamp", "description": "Save youtube videos with exact timestamps for later.", "version": "1.1", "manifest_version": 3, "background": { "service_worker": ".\/src\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" } }, "icons": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |