Comments Search for Youtube
Search youtube comments by keywords.
Что такое Comments Search for Youtube?
Comments Search for Youtube - это расширение Chrome, разработанное https://lett.app, и его основная функция - "Search youtube comments by keywords.".
Снимки экрана расширения
Скачать файл CRX расширения Comments Search for Youtube
Скачайте файлы расширений Comments Search for Youtube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Comments Search for Youtube allows you to search youtube comments without leaving the site, saving you time and enhancing your watch experience. How to use: Go to any Youtube video and hit Ctrl+S or click the extension icon.
Основная информация о расширении
Название | Comments Search for Youtube |
ID | fbbhnhgdgjbfnkoiiedglmlnmleefjga |
Официальный URL | https://chromewebstore.google.com/detail/comments-search-for-youtu/fbbhnhgdgjbfnkoiiedglmlnmleefjga |
Описание | Search youtube comments by keywords. |
Размер файла | 40.75 KB |
Количество установок | 1,428 |
Текущая Версия | 3.112 |
Последнее Обновление | 2024-02-14 |
Дата публикации | 2022-09-30 |
Рейтинг | 4.00/5 Всего 7 оценок |
Разработчик | https://lett.app |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://cs.lett.app |
URL страницы политики конфиденциальности | https://lett.app/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "3.112", "minimum_chrome_version": "98", "name": "Comments Search for Youtube", "description": "Search youtube comments by keywords.", "icons": { "32": "\/assets\/icon32.png", "128": "\/assets\/icon.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "externally_connectable": { "matches": [ "https:\/\/api.lett.app\/*" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "\/html\/style.css" ], "js": [ "\/js\/content.js" ] } ], "background": { "service_worker": "\/js\/worker.js" }, "web_accessible_resources": [ { "resources": [ "html\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": [] } |