YouTube Profanity Filter

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

Wat is YouTube Profanity Filter?

YouTube Profanity Filter is een Chrome-extensie ontwikkeld door @atechdad, en de belangrijkste functie is "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Profanity Filter

Download YouTube Profanity Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam YouTube Profanity Filter YouTube Profanity Filter
ID dnglegpjmiodocfnhbbmlkabckglpmhf
Officiële URL https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf
Beschrijving (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
Bestandsgrootte 14.2 KB
Aantal Installaties 779
Huidige Versie 0.1.0.1
Laatst Bijgewerkt 2017-01-04
Publicatiedatum 2017-01-04
Beoordeling 3.50/5 Totaal 4 Beoordelingen
Ontwikkelaar @atechdad
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}