Content Warning
This extension provides customizable content warnings
Content Warningคืออะไร?
Content Warning เป็นส่วนขยายของ Chrome ที่พัฒนาโดย justinas.banys1 และคุณลักษณะหลักของมันคือ "This extension provides customizable content warnings"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Content Warning
ดาวน์โหลดไฟล์ส่วนขยาย Content Warning ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension provides content warnings for particular keywords while browsing on various websites. The content warnings are easily customizable. Users can add, remove, and disable different warnings according to their preferences and whatever they find convenient using a simple interface. In case a keyword is found on some website, a pop-up is thrown providing the user with two options: continue browsing or leaving the site.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
คำอธิบาย | This extension provides customizable content warnings |
ขนาดไฟล์ | 17.76 KB |
จำนวนการติดตั้ง | 12 |
เวอร์ชันปัจจุบัน | 1.4.1 |
อัปเดตครั้งล่าสุด | 2018-06-02 |
วันที่เผยแพร่ | 2018-06-01 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | justinas.banys1 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content Warning", "description": "This extension provides customizable content warnings", "version": "1.4.1", "options_page": "options.html", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "cw_icon.png" }, "icons": { "128": "cw_icon.png" }, "background": { "scripts": [ "js\/content.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ] } |