YouTube Subscriptions Filter

Filter your subscriptions in YouTube sidebar.

Что такое YouTube Subscriptions Filter?

YouTube Subscriptions Filter - это расширение Chrome, разработанное boykodev, и его основная функция - "Filter your subscriptions in YouTube sidebar.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Subscriptions Filter

Скачайте файлы расширений YouTube Subscriptions Filter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension adds a filter input in YouTube™ sidebar.                    

Основная информация о расширении

Название YouTube Subscriptions Filter YouTube Subscriptions Filter
ID mljeimfhlmkmdjdkipflelpmkkcccoga
Официальный URL https://chrome.google.com/webstore/detail/youtube-subscriptions-fil/mljeimfhlmkmdjdkipflelpmkkcccoga
Описание Filter your subscriptions in YouTube sidebar.
Размер файла 38.81 KB
Количество установок 68
Текущая Версия 1.0
Последнее Обновление 2017-06-08
Дата публикации 2017-06-08
Рейтинг 2.00/5 Всего 1 оценок
Разработчик boykodev
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Subscriptions Filter",
    "short_name": "YT Subs Filter",
    "version": "1.0",
    "description": "Filter your subscriptions in YouTube sidebar.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "Subscriptions filter for YouTube"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*"
    ]
}