Content Warning
This extension provides customizable content warnings
什麼是Content Warning?
Content Warning是由justinas.banys1開發的Chrome擴展程式,該擴展的主要功能是“This extension provides customizable content warnings”。
擴展截圖
下載Content Warning擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |