Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
Cos'è Warn Me?
Warn Me è un'estensione di Chrome sviluppata da Linus G., e la sua funzione principale è "Warns you if there are any subjects that need a trigger warning on a webpage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Warn Me
Scarica i file di estensione Warn Me in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Warn Me |
ID | koglokeamlegaaidhjnjdbifcpnkoafg |
URL Ufficiale | https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg |
Descrizione | Warns you if there are any subjects that need a trigger warning on a webpage |
Dimensione del File | 160 KB |
Conteggio Installazioni | 64 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-09-30 |
Data di Pubblicazione | 2016-09-29 |
Valutazione | 4.17/5 Totale 12 Valutazioni |
Sviluppatore | Linus G. |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/LinusGordon/warn-me |
Lingue Supportate | 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" ] } |