YouTube Profanity Filter

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

Was ist YouTube Profanity Filter?

YouTube Profanity Filter ist eine Chrome-Erweiterung, die von @atechdad entwickelt wurde, und ihr Hauptmerkmal ist "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".

Erweiterungsscreenshots

screenshot

YouTube Profanity Filter-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Profanity Filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Profanity Filter YouTube Profanity Filter
ID dnglegpjmiodocfnhbbmlkabckglpmhf
Offizielle URL https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf
Beschreibung (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
Dateigröße 14.2 KB
Installationsanzahl 779
Aktuelle Version 0.1.0.1
Letztes Update 2017-01-04
Veröffentlichungsdatum 2017-01-04
Bewertung 3.50/5 Insgesamt 4 Bewertungen
Entwickler @atechdad
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}