Twitter TW Blocker

Blur the tweets containing a trigger warning

ما هو Twitter TW Blocker؟

Twitter TW Blocker هو إضافة Chrome تم تطويرها بواسطة tymmesyde، والميزة الرئيسية لها هي "Blur the tweets containing a trigger warning".

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

screenshot

تحميل ملف CRX للإضافة Twitter TW Blocker

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

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

                        Use Twitter TW Blocker if you want to hide the tweets that have a trigger warning pattern (e.g. TW // content).
Just click on the tweet if you want to remove the warning.                    

معلومات أساسية عن التمديد

الاسم Twitter TW Blocker Twitter TW Blocker
ID cmgnaiadimhcfkmfehdbindohbenemnk
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk
الوصف Blur the tweets containing a trigger warning
حجم الملف 15 KB
عدد التثبيتات 19
النسخة الحالية 1.0
آخر تحديث 2020-08-09
تاريخ النشر 2020-08-09
المطور tymmesyde
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter TW Blocker",
    "description": "Blur the tweets containing a trigger warning",
    "version": "1.0",
    "icons": {
        "16": "src\/images\/icon_16.png",
        "32": "src\/images\/icon_32.png",
        "48": "src\/images\/icon_48.png",
        "128": "src\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "src\/styles\/content.css"
            ],
            "js": [
                "src\/scripts\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/styles\/content.css"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "src\/images\/icon_16.png",
            "32": "src\/images\/icon_32.png",
            "48": "src\/images\/icon_48.png",
            "128": "src\/images\/icon_128.png"
        }
    }
}