Content Warning
This extension provides customizable content warnings
What is Content Warning?
Content Warning is a Chrome extension developed by justinas.banys1, and its main feature is "This extension provides customizable content warnings".
Extension Screenshots
Download Content Warning Extension CRX File
Download Content Warning extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
Official URL | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Description | This extension provides customizable content warnings |
File Size | 17.76 KB |
Installation Count | 12 |
Current Version | 1.4.1 |
Last Updated | 2018-06-02 |
Publish Date | 2018-06-01 |
Rating | 5.00/5 Total 2 Ratings |
Developer | justinas.banys1 |
Payment Type | free |
Supported Languages | 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" ] } ] } |