YouTube Profanity Filter
(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
Co je YouTube Profanity Filter?
YouTube Profanity Filter je rozšíření Chrome vyvinuté @atechdad, a jeho hlavní funkcí je „(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Profanity Filter
Stáhněte si soubory rozšíření YouTube Profanity Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | dnglegpjmiodocfnhbbmlkabckglpmhf |
Oficiální URL | https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf |
Popis | (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video. |
Velikost souboru | 14.2 KB |
Počet instalací | 779 |
Aktuální Verze | 0.1.0.1 |
Poslední Aktualizace | 2017-01-04 |
Datum Vydání | 2017-01-04 |
Hodnocení | 3.50/5 Celkem 4 Hodnocení |
Vývojář | @atechdad |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } ] } |