Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
What is Warn Me?
Warn Me is a Chrome extension developed by Linus G., and its main feature is "Warns you if there are any subjects that need a trigger warning on a webpage".
Extension Screenshots
Download Warn Me Extension CRX File
Download Warn Me 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 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!
Extension Basic Information
Name | Warn Me |
ID | koglokeamlegaaidhjnjdbifcpnkoafg |
Official URL | https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg |
Description | Warns you if there are any subjects that need a trigger warning on a webpage |
File Size | 160 KB |
Installation Count | 64 |
Current Version | 1.0 |
Last Updated | 2016-09-30 |
Publish Date | 2016-09-29 |
Rating | 4.17/5 Total 12 Ratings |
Developer | Linus G. |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/LinusGordon/warn-me |
Supported Languages | 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" ] } |