Blur It Out

A simple extension that blurs out words you don't like

Blur It Outとは何ですか?

Blur It OutはProcrastinating Studentによって開発されたChromeの拡張機能で、その主な機能は「A simple extension that blurs out words you don't like」です。

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

screenshot
screenshot

Blur It Out拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Blurs our any text containing any user-specified blacklisted words. Mouseover the blurred lines to show the text.

Update in Version 1.2:
 - You can now toggle whether the blur goes away on mouseover.

Updates in Version 1.1:
 - Button to toggle blurring
 - Blurs entire object in feed usually now                    

拡張機能の基本情報

名前 Blur It Out Blur It Out
ID aiocpnokjcmpelmlmekbjjblcompckhe
公式URL https://chromewebstore.google.com/detail/blur-it-out/aiocpnokjcmpelmlmekbjjblcompckhe
説明 A simple extension that blurs out words you don't like
ファイルサイズ 49.38 KB
インストール数 5,337
現在のバージョン 1.2
最終更新日 2019-09-27
公開日 2019-09-27
評価 4.67/5 合計 15 レビュー
開発者 Procrastinating Student
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blur It Out",
    "description": "A simple extension that blurs out words you don't like",
    "version": "1.2",
    "permissions": [
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "mystyles.css"
            ],
            "js": [
                "third-party\/jquery-1.12.0.min.js",
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Blur It Out Settings",
        "default_popup": "browser_action.html"
    },
    "manifest_version": 2
}