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
官方網址 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
}