Advanced Profanity Filter

Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.

Advanced Profanity Filter란 무엇입니까?

Advanced Profanity Filter은(는) https://frostco.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Advanced Profanity Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Whether you choose to censor, substitute, or hide offensive words, APF is here to improve your browsing experience. Individuals around the world can now be protected from profanity in their homes, organizations, and schools. APF has a variety of options to meet your personal needs.

APF is not limited to filtering text alone! With the use of captions and subtitles it can also mute audio while you sit back and relax to watch your favorite movies and shows from a collection of supported sites. Have a suggestion for a new supported site? Contact us!

For a detailed overview of the features and settings, please see the Getting Started page here:

https://github.com/richardfrost/AdvancedProfanityFilter/wiki

Thank you for supporting the ongoing development of this project.                    

확장 프로그램 기본 정보

이름 Advanced Profanity Filter Advanced Profanity Filter
ID piajkpdbaniagacofgklljacgjhefjeh
공식 URL https://chromewebstore.google.com/detail/advanced-profanity-filter/piajkpdbaniagacofgklljacgjhefjeh
설명 Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.
파일 크기 540 KB
설치 횟수 14,941
현재 버전 3.3.3
최근 업데이트 2024-02-14
출시 날짜 2020-07-02
평점 4.52/5 총 169 개의 평점
개발자 https://frostco.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FrostCo/AdvancedProfanityFilter
도움말 페이지 URL https://github.com/FrostCo/AdvancedProfanityFilter/issues
개인정보 보호 정책 페이지 URL https://github.com/FrostCo/AdvancedProfanityFilter/blob/main/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced Profanity Filter",
    "short_name": "APF",
    "author": "FrostCo",
    "manifest_version": 3,
    "version": "3.3.3",
    "description": "Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "notifications",
        "scripting",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "webFilter.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "optionPage.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Advanced Profanity Filter",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/*.crunchyroll.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "audio\/*.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "storage": {
        "managed_schema": "schema.json"
    }
}