Focus Only Youtube

Tired of wasting hours on YouTube? Now download this to prevent videos from auto-playing, remove YouTube’s recommended videos, and…

Что такое Focus Only Youtube?

Focus Only Youtube - это расширение Chrome, разработанное yeungtsunw, и его основная функция - "Tired of wasting hours on YouTube? Now download this to prevent videos from auto-playing, remove YouTube’s recommended videos, and…".

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

screenshot
screenshot

Скачать файл CRX расширения Focus Only Youtube

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

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

                        Tired of wasting hours on YouTube? Now download this to prevent videos from auto-playing, remove YouTube’s recommended videos, and reroute you to “focus music” after reaching daily video limit                    

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

Название Focus Only Youtube Focus Only Youtube
ID dmijcnhkoikmggpghahdjdhiahkkneki
Официальный URL https://chrome.google.com/webstore/detail/focus-only-youtube/dmijcnhkoikmggpghahdjdhiahkkneki
Описание Tired of wasting hours on YouTube? Now download this to prevent videos from auto-playing, remove YouTube’s recommended videos, and…
Размер файла 88.09 KB
Количество установок 512
Текущая Версия 0.1
Последнее Обновление 2017-09-14
Дата публикации 2017-09-14
Рейтинг 3.00/5 Всего 3 оценок
Разработчик yeungtsunw
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focus Only Youtube",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.2.1.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabCapture",
        "tabs",
        "storage",
        "desktopCapture",
        "webNavigation",
        "activeTab"
    ]
}