Censor Me

Censor the internet by blocking certain words!

Censor Meとは何ですか?

Censor Meはmehulpillaidev25によって開発されたChromeの拡張機能で、その主な機能は「Censor the internet by blocking certain words!」です。

拡張機能のスクリーンショット

screenshot
screenshot

Censor Me拡張機能のCRXファイルをダウンロード

Censor Me拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Chrome extension that should censor keywords on the current page.
- Enter any keywords you would like to block on websites and delete them later.
- Highlight a word and click the "add word" option on the context menu to quickly censor a word.
- Block websites from popup to stop the extension script from running on those sites.
- A global off switch that turns off the extension's functionality.                    

拡張機能の基本情報

名前 Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
公式URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
説明 Censor the internet by blocking certain words!
ファイルサイズ 16.42 KB
インストール数 397
現在のバージョン 1.0
最終更新日 2021-01-19
公開日 2021-01-19
評価 3.17/5 合計 6 レビュー
開発者 mehulpillaidev25
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Censor Me",
    "version": "1.0",
    "description": "Censor the internet by blocking certain words!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}