ZingFilter

Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.

ZingFilter là gì?

ZingFilter là một tiện ích mở rộng Chrome được phát triển bởi Zero Gravity Programming, và tính năng chính của nó là "Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng ZingFilter 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

                        ZingFilter allows you to watch filtered YouTube videos, removing unwanted foul language, extreme violence, nudity, sexuality, obscenity, and boring fluff. The extension also enables anyone to create custom filters for YouTube videos of your choice. The whole world can then enjoy watching the videos you have filtered, with their ZingFilter extension installed.

Filter the world!                    

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

Tên ZingFilter ZingFilter
ID idnbpaebbbhpedgfkgjblpnmjdmkijbn
URL Chính Thức https://chromewebstore.google.com/detail/zingfilter/idnbpaebbbhpedgfkgjblpnmjdmkijbn
Mô tả Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.
Kích Thước Tệp 281 KB
Số Lần Cài Đặt 196
Phiên Bản Hiện Tại 2.14
Cập Nhật Lần Cuối 2021-10-01
Ngày Phát Hành 2019-08-04
Đánh Giá 4.67/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Zero Gravity Programming
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.zingfilter.us/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "manifest_version": 2,
    "name": "ZingFilter",
    "short_name": "ZingFilter",
    "version": "2.14",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute\/skip objectionable or boring content.",
    "author": "ZingFilter",
    "homepage_url": "https:\/\/www.zingfilter.us\/",
    "browser_action": {
        "default_icon": {
            "19": "images\/logo_19.png",
            "38": "images\/logo_38.png"
        },
        "default_popup": "popup.html",
        "default_title": "ZingFilter Settings"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "*:\/\/*.zingfilter.us\/*"
            ],
            "js": [
                "js\/ZingFilter.js",
                "js\/jquery-3.1.1.min.js",
                "js\/encryption\/aes.js",
                "js\/encryption\/aes-json-format.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo_16.png",
        "19": "images\/logo_19.png",
        "38": "images\/logo_38.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}