Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
Что такое Time Viewer for YouTube Live?
Time Viewer for YouTube Live - это расширение Chrome, разработанное https://fiahfy.blogspot.com, и его основная функция - "Chrome Extension for Viewing Time on YouTube Live.".
Снимки экрана расширения
Скачать файл CRX расширения Time Viewer for YouTube Live
Скачайте файлы расширений Time Viewer for YouTube Live в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- Display video publishing time. - Display time on seek bar and chat.
Основная информация о расширении
Название | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
Официальный URL | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
Описание | Chrome Extension for Viewing Time on YouTube Live. |
Размер файла | 25.52 KB |
Количество установок | 249 |
Текущая Версия | 0.0.6 |
Последнее Обновление | 2023-01-01 |
Дата публикации | 2021-06-21 |
Рейтинг | 4.67/5 Всего 3 оценок |
Разработчик | https://fiahfy.blogspot.com |
Электронная почта | d.fiahfy@gmail.com |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] }, { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat_replay*" ], "all_frames": true, "js": [ "content-script-frame.js" ], "css": [ "content-script-frame.css" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Time Viewer for YouTube Live", "description": "Chrome Extension for Viewing Time on YouTube Live.", "version": "0.0.6" } |