YouTube Profanity Filter

(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.

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

YouTube Profanity Filter - это расширение Chrome, разработанное @atechdad, и его основная функция - "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".

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

screenshot

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

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

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

                        The YouTube Profanity Filter was created to provide a better way to block unwanted content. This plugin uses the video's closed captions to identify bad words and blocks the video if the language is found.

Created by @atechdad originally for personal use.


YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

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

Название YouTube Profanity Filter YouTube Profanity Filter
ID dnglegpjmiodocfnhbbmlkabckglpmhf
Официальный URL https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf
Описание (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
Размер файла 14.2 KB
Количество установок 779
Текущая Версия 0.1.0.1
Последнее Обновление 2017-01-04
Дата публикации 2017-01-04
Рейтинг 3.50/5 Всего 4 оценок
Разработчик @atechdad
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube  Profanity Filter",
    "description": "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.",
    "version": "0.1.0.1",
    "homepage_url": "https:\/\/twitter.com\/atechdad",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "https:\/\/*.youtube.com\/",
        "contextMenus"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}