YouTube Timestamper
Allows you to quickly copy current video/stream timestamp (with offset).
Что такое YouTube Timestamper?
YouTube Timestamper - это расширение Chrome, разработанное IAmVisco, и его основная функция - "Allows you to quickly copy current video/stream timestamp (with offset).".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Timestamper
Скачайте файлы расширений YouTube Timestamper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A small utility tool that allows you to copy current video or stream timestamp. Icon by Iconpacks.
Основная информация о расширении
Название | YouTube Timestamper |
ID | fpjlholgdibolbjehinkkmbgodapojmp |
Официальный URL | https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp |
Описание | Allows you to quickly copy current video/stream timestamp (with offset). |
Размер файла | 16.88 KB |
Количество установок | 82 |
Текущая Версия | 1.3.0 |
Последнее Обновление | 2023-06-21 |
Дата публикации | 2021-05-07 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | IAmVisco |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamper", "version": "1.3.0", "description": "Allows you to quickly copy current video\/stream timestamp (with offset).", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "YouTube Timestamper" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/live\/*" ], "js": [ "inject-button.js", "utils.js" ], "css": [ "button.css" ] } ], "options_ui": { "page": "settings\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |