Blur It Out

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

Co je Blur It Out?

Blur It Out je rozšíření Chrome vyvinuté Procrastinating Student, a jeho hlavní funkcí je „A simple extension that blurs out words you don't like“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Blur It Out

Stáhněte si soubory rozšíření Blur It Out ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Blur It Out Blur It Out
ID aiocpnokjcmpelmlmekbjjblcompckhe
Oficiální URL https://chromewebstore.google.com/detail/blur-it-out/aiocpnokjcmpelmlmekbjjblcompckhe
Popis A simple extension that blurs out words you don't like
Velikost souboru 49.38 KB
Počet instalací 5,337
Aktuální Verze 1.2
Poslední Aktualizace 2019-09-27
Datum Vydání 2019-09-27
Hodnocení 4.67/5 Celkem 15 Hodnocení
Vývojář Procrastinating Student
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
}