Blur It Out

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

ما هو Blur It Out؟

Blur It Out هو إضافة Chrome تم تطويرها بواسطة Procrastinating Student، والميزة الرئيسية لها هي "A simple extension that blurs out words you don't like".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Blur It Out

قم بتنزيل ملفات الامتداد Blur It Out بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}