Youtube Short Controller
Youtube Shorts Controller
Что такое Youtube Short Controller?
Youtube Short Controller - это расширение Chrome, разработанное https://misa198.vercel.app, и его основная функция - "Youtube Shorts Controller".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Short Controller
Скачайте файлы расширений Youtube Short Controller в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.
Основная информация о расширении
Название | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
Описание | Youtube Shorts Controller |
Размер файла | 24.95 KB |
Количество установок | 3,214 |
Текущая Версия | 1.0.5 |
Последнее Обновление | 2022-10-15 |
Дата публикации | 2022-04-28 |
Рейтинг | 3.94/5 Всего 16 оценок |
Разработчик | https://misa198.vercel.app |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/misa198/youtube-shorts-controller |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Youtube Shorts Controller", "version": "1.0.5", "author": "Thanh Vu", "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller", "manifest_version": 3, "name": "Youtube Short Controller", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "icons": { "16": "icons\/icon16.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage" ], "action": { "default_icon": "icons\/icon64.png", "default_popup": "popup.html" } } |