Profanity-Blocker

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

什麼是Profanity-Blocker?

Profanity-Blocker是由https://profanityblocker.org開發的Chrome擴展程式,該擴展的主要功能是“An advanced bad-word-blocker Chrome extension that censors bad words and websites.”。

擴展截圖

screenshot
screenshot

下載Profanity-Blocker擴展crx文件

下載Profanity-Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Profanity-Blocker Profanity-Blocker
ID nfeoeimdfclfmipanclebdelkjdhdioj
官方網址 https://chromewebstore.google.com/detail/profanity-blocker/nfeoeimdfclfmipanclebdelkjdhdioj
簡介 An advanced bad-word-blocker Chrome extension that censors bad words and websites.
檔案大小 693 KB
安裝次數 214
目前版本 1.5
更新時間 2022-08-29
上架時間 2021-12-30
評分 4.50/5 共 8 次評分
開發者 https://profanityblocker.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://profanityblocker.org
支援的語言 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"
}