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是由@atechdad开发的Chrome扩展程序,该扩展的主要功能是“(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.”。
扩展截图
下载YouTube Profanity Filter扩展crx文件
下载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.
扩展基本信息
名称 | |
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" } ] } |