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
电子邮箱 [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
}