Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
Что такое Crunchyroll Timestamp Helper?
Crunchyroll Timestamp Helper - это расширение Chrome, разработанное Mario, и его основная функция - "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Снимки экрана расширения
Скачать файл CRX расширения Crunchyroll Timestamp Helper
Скачайте файлы расширений Crunchyroll Timestamp Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Основная информация о расширении
Название | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
Официальный URL | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Описание | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
Размер файла | 136 KB |
Количество установок | 34 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2019-10-20 |
Дата публикации | 2019-10-20 |
Разработчик | Mario |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Crunchyroll Timestamp Helper", "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video", "version": "1.0.3", "author": "Mathew Anjos", "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/icon.png" }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "activeTab", "*:\/\/*.crunchyroll.com\/*" ] } |