Profanity-Blocker

An advanced bad-word-blocker Chrome extension that censors bad words and websites.

Profanity-Blocker là gì?

Profanity-Blocker là một tiện ích mở rộng Chrome được phát triển bởi https://profanityblocker.org, và tính năng chính của nó là "An advanced bad-word-blocker Chrome extension that censors bad words and websites.".

Ả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 Profanity-Blocker

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

                        This extension can detect double meaning words, offers an option to ignore and/or censor double meaning words. You can add and delete words or keep the default filter. Add a password authorization by going to the options menu, and toggle. You can keep records of the most words filtered!

After installing this extension you will be redirected to our website!                    

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

Tên Profanity-Blocker Profanity-Blocker
ID nfeoeimdfclfmipanclebdelkjdhdioj
URL Chính Thức https://chromewebstore.google.com/detail/profanity-blocker/nfeoeimdfclfmipanclebdelkjdhdioj
Mô tả An advanced bad-word-blocker Chrome extension that censors bad words and websites.
Kích Thước Tệp 693 KB
Số Lần Cài Đặt 214
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2022-08-29
Ngày Phát Hành 2021-12-30
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://profanityblocker.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://profanityblocker.org
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Profanity-Blocker",
    "version": "1.5",
    "icons": {
        "128": "images\/logo128.png"
    },
    "description": "An advanced bad-word-blocker Chrome extension that censors bad words and websites.",
    "background": {
        "service_worker": "page.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/www.instagram.com\/*",
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "script-src": "'self' object-src"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/logo.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/ajax.googleapis.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "warn\/warn.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "incognito": "split"
}