Subscription Feed Filter for YouTube
Filters such as Live, Streamed, Video, and Keyword search can be added to Subscriptions, Playlists, and other YouTube pages.
Что такое Subscription Feed Filter for YouTube?
Subscription Feed Filter for YouTube - это расширение Chrome, разработанное Simple and Tiny Utilities, и его основная функция - "Filters such as Live, Streamed, Video, and Keyword search can be added to Subscriptions, Playlists, and other YouTube pages.".
Снимки экрана расширения
Скачать файл CRX расширения Subscription Feed Filter for YouTube
Скачайте файлы расширений Subscription Feed Filter for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Provides a filter like YouTube home screen on pages such as subscriptions and libraries. Filters: Live, Streamed, Video, Shorts, Scheduled, Notification on, Notification off, Unwatched, Watched Keyword search: It can be combined with other filters.
Основная информация о расширении
Название | Subscription Feed Filter for YouTube |
ID | jpdngflnlekafjhdlcnijphhcmeibdoa |
Официальный URL | https://chromewebstore.google.com/detail/subscription-feed-filter/jpdngflnlekafjhdlcnijphhcmeibdoa |
Описание | Filters such as Live, Streamed, Video, and Keyword search can be added to Subscriptions, Playlists, and other YouTube pages. |
Размер файла | 72.41 KB |
Количество установок | 265 |
Текущая Версия | 1.31.0 |
Последнее Обновление | 2024-02-25 |
Дата публикации | 2022-07-05 |
Рейтинг | 4.20/5 Всего 5 оценок |
Разработчик | Simple and Tiny Utilities |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/yudai-tiny-developer/filter |
Поддерживаемые языки | id,de,en,en-GB,en-US,fil,fr,es,es-419,it,pt-BR,pt-PT,th,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Subscription Feed Filter for YouTube", "version": "1.31.0", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end", "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "lang\/*.js", "common.js", "settings.js", "progress.js" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "options_ui": { "page": "popup.html", "open_in_tab": true }, "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "{7d37f4c3-c6cf-4b18-a748-ed4a6e7eb281}" } } } |