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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}