YouFocus - YouTube Filter

A filter for YouTube videos.

Что такое YouFocus - YouTube Filter?

YouFocus - YouTube Filter - это расширение Chrome, разработанное Practimake, и его основная функция - "A filter for YouTube videos.".

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

screenshot
screenshot

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

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

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

                        Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.                    

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

Название YouFocus - YouTube Filter YouFocus - YouTube Filter
ID nlokjknlncdcjohkpclkbeofefnmjaad
Официальный URL https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad
Описание A filter for YouTube videos.
Размер файла 729 KB
Количество установок 230
Текущая Версия 1.0.1
Последнее Обновление 2020-07-17
Дата публикации 2020-07-15
Рейтинг 4.80/5 Всего 5 оценок
Разработчик Practimake
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouFocus - YouTube Filter",
    "description": "A filter for YouTube videos.",
    "version": "1.0.1",
    "icons": {
        "128": "funnelV2.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "utils.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "funnelV2.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ]
}