Advanced Profanity Filter

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

Advanced Profanity Filter là gì?

Advanced Profanity Filter là một tiện ích mở rộng Chrome được phát triển bởi https://frostco.dev, và tính năng chính của nó là "Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.".

Ả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 Advanced Profanity Filter

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

                        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.                    

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

Tên Advanced Profanity Filter Advanced Profanity Filter
ID piajkpdbaniagacofgklljacgjhefjeh
URL Chính Thức https://chromewebstore.google.com/detail/advanced-profanity-filter/piajkpdbaniagacofgklljacgjhefjeh
Mô tả Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.
Kích Thước Tệp 540 KB
Số Lần Cài Đặt 14,941
Phiên Bản Hiện Tại 3.3.3
Cập Nhật Lần Cuối 2024-02-14
Ngày Phát Hành 2020-07-02
Đánh Giá 4.52/5 Tổng số 169 Đánh Giá
Nhà Phát Triển https://frostco.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/FrostCo/AdvancedProfanityFilter
URL Trang Trợ Giúp https://github.com/FrostCo/AdvancedProfanityFilter/issues
URL Trang Chính Sách Bảo Mật https://github.com/FrostCo/AdvancedProfanityFilter/blob/main/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}