Warn Me

Warns you if there are any subjects that need a trigger warning on a webpage

ما هو Warn Me؟

Warn Me هو إضافة Chrome تم تطويرها بواسطة Linus G.، والميزة الرئيسية لها هي "Warns you if there are any subjects that need a trigger warning on a webpage".

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

screenshot

تحميل ملف CRX للإضافة Warn Me

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

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

                        This extension will warn you if any potentially triggering subjects appear on a webpage, allowing you to browse the Internet safely. You can also blacklist your own keywords if you want to add your own.

The storage permission is used only to store words that you personally think are triggering, if you want to add your own. 

Enjoy!                    

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

الاسم Warn Me Warn Me
ID koglokeamlegaaidhjnjdbifcpnkoafg
عنوان URL الرسمي https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg
الوصف Warns you if there are any subjects that need a trigger warning on a webpage
حجم الملف 160 KB
عدد التثبيتات 64
النسخة الحالية 1.0
آخر تحديث 2016-09-30
تاريخ النشر 2016-09-29
تقييم 4.17/5 مجموع تقييمات 12
المطور Linus G.
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/LinusGordon/warn-me
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Warn Me",
    "short_name": "Warn Me",
    "description": "Warns you if there are any subjects that need a trigger warning on a webpage",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "findtrig.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}