ZingFilter

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

ZingFilter란 무엇입니까?

ZingFilter은(는) Zero Gravity Programming에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ZingFilter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 ZingFilter ZingFilter
ID idnbpaebbbhpedgfkgjblpnmjdmkijbn
공식 URL https://chromewebstore.google.com/detail/zingfilter/idnbpaebbbhpedgfkgjblpnmjdmkijbn
설명 Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.
파일 크기 281 KB
설치 횟수 196
현재 버전 2.14
최근 업데이트 2021-10-01
출시 날짜 2019-08-04
평점 4.67/5 총 9 개의 평점
개발자 Zero Gravity Programming
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.zingfilter.us/
지원되는 언어 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"
        ]
    }
}