Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
Co to jest Warn Me?
Warn Me to rozszerzenie Chrome opracowane przez Linus G., a jego główną funkcją jest „Warns you if there are any subjects that need a trigger warning on a webpage”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Warn Me
Pobierz pliki rozszerzeń Warn Me w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Warn Me |
ID | koglokeamlegaaidhjnjdbifcpnkoafg |
Oficjalny URL | https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg |
Opis | Warns you if there are any subjects that need a trigger warning on a webpage |
Rozmiar pliku | 160 KB |
Liczba instalacji | 64 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-09-30 |
Data Publikacji | 2016-09-29 |
Ocena | 4.17/5 Łącznie 12 Oceny |
Deweloper | Linus G. |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/LinusGordon/warn-me |
Obsługiwane Języki | 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" ] } |