YouTube Profanity Filter

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

YouTube Profanity Filter là gì?

YouTube Profanity Filter là một tiện ích mở rộng Chrome được phát triển bởi @atechdad, và tính năng chính của nó là "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Profanity Filter

Tải xuống các tệp mở rộng YouTube Profanity Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Profanity Filter YouTube Profanity Filter
ID dnglegpjmiodocfnhbbmlkabckglpmhf
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf
Mô tả (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
Kích Thước Tệp 14.2 KB
Số Lần Cài Đặt 779
Phiên Bản Hiện Tại 0.1.0.1
Cập Nhật Lần Cuối 2017-01-04
Ngày Phát Hành 2017-01-04
Đánh Giá 3.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển @atechdad
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}