Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
O que é Warn Me?
Warn Me é uma extensão do Chrome desenvolvida por Linus G., e sua principal característica é "Warns you if there are any subjects that need a trigger warning on a webpage".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Warn Me
Baixe arquivos de extensão Warn Me no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Warn Me |
ID | koglokeamlegaaidhjnjdbifcpnkoafg |
URL Oficial | https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg |
Descrição | Warns you if there are any subjects that need a trigger warning on a webpage |
Tamanho do Arquivo | 160 KB |
Contagem de Instalações | 64 |
Versão Atual | 1.0 |
Última Atualização | 2016-09-30 |
Data de Publicação | 2016-09-29 |
Classificação | 4.17/5 Total de 12 Avaliações |
Desenvolvedor | Linus G. |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/LinusGordon/warn-me |
Idiomas Suportados | 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" ] } |