Content Warning
This extension provides customizable content warnings
Content Warning là gì?
Content Warning là một tiện ích mở rộng Chrome được phát triển bởi justinas.banys1, và tính năng chính của nó là "This extension provides customizable content warnings".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Content Warning
Tải xuống các tệp mở rộng Content Warning dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
URL Chính Thức | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Mô tả | This extension provides customizable content warnings |
Kích Thước Tệp | 17.76 KB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 1.4.1 |
Cập Nhật Lần Cuối | 2018-06-02 |
Ngày Phát Hành | 2018-06-01 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | justinas.banys1 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |