YouTube Profanity Filter
(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
O que é YouTube Profanity Filter?
YouTube Profanity Filter é uma extensão do Chrome desenvolvida por @atechdad, e sua principal característica é "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Profanity Filter
Baixe arquivos de extensão YouTube Profanity Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | dnglegpjmiodocfnhbbmlkabckglpmhf |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf |
Descrição | (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video. |
Tamanho do Arquivo | 14.2 KB |
Contagem de Instalações | 779 |
Versão Atual | 0.1.0.1 |
Última Atualização | 2017-01-04 |
Data de Publicação | 2017-01-04 |
Classificação | 3.50/5 Total de 4 Avaliações |
Desenvolvedor | @atechdad |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |