Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
Was ist Warn Me?
Warn Me ist eine Chrome-Erweiterung, die von Linus G. entwickelt wurde, und ihr Hauptmerkmal ist "Warns you if there are any subjects that need a trigger warning on a webpage".
Erweiterungsscreenshots
Warn Me-Erweiterungs-CRX-Datei herunterladen
Laden Sie Warn Me-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Warn Me |
ID | koglokeamlegaaidhjnjdbifcpnkoafg |
Offizielle URL | https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg |
Beschreibung | Warns you if there are any subjects that need a trigger warning on a webpage |
Dateigröße | 160 KB |
Installationsanzahl | 64 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-09-30 |
Veröffentlichungsdatum | 2016-09-29 |
Bewertung | 4.17/5 Insgesamt 12 Bewertungen |
Entwickler | Linus G. |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/LinusGordon/warn-me |
Unterstützte Sprachen | 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" ] } |