YouTube Recommendation Decliner

Declines video recommendations from YouTube to help lessen procrastination.

Что такое YouTube Recommendation Decliner?

YouTube Recommendation Decliner - это расширение Chrome, разработанное Anders Steen, и его основная функция - "Declines video recommendations from YouTube to help lessen procrastination.".

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

screenshot
screenshot

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

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

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

                        Hides videos that are considered recommended videos. This includes the YouTube home and trending pages, as well as the related videos appearing below or to the side of video playback. Recommended videos appearing after videos are also declined. Searches, subscriptions, history, library and channels are unaffected.

The point is to get the recommended videos out of sight, in order to decrease the risk of users getting stuck clicking on recommended videos for hours.                    

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

Название YouTube Recommendation Decliner YouTube Recommendation Decliner
ID feoddkggeangnmgoomlcdldcffoidake
Официальный URL https://chromewebstore.google.com/detail/youtube-recommendation-de/feoddkggeangnmgoomlcdldcffoidake
Описание Declines video recommendations from YouTube to help lessen procrastination.
Размер файла 18.43 KB
Количество установок 15
Текущая Версия 1.1.0
Последнее Обновление 2020-12-14
Дата публикации 2020-03-11
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Anders Steen
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendation Decliner",
    "short_name": "YT Decliner",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Declines video recommendations from YouTube to help lessen procrastination.",
    "icons": {
        "16": "\/images\/icon_16.png",
        "128": "\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "\/js\/contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "\/images\/icon_128.png",
        "default_popup": "\/html\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}