Never Let me Click Reddit NSFW Links at Work
When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link
O que é Never Let me Click Reddit NSFW Links at Work?
Never Let me Click Reddit NSFW Links at Work é uma extensão do Chrome desenvolvida por Matt Kim, e sua principal característica é "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Never Let me Click Reddit NSFW Links at Work
Baixe arquivos de extensão Never Let me Click Reddit NSFW Links at Work 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
Some of the NSFW links on Reddit make it to the front page and I accidentally clicked on one today at work. No big deal but I don't ever want someone walking by my computer if that ever happened! When enabled, all the NSFW links are removed and you will never mistakingly click on the link again. BTW, you can fork this @ https://github.com/iamakimmer/reddit_nsfw_nono , it really is just one line of code and could be improved. I just needed something now!
Informações Básicas da Extensão
Nome | Never Let me Click Reddit NSFW Links at Work |
ID | bgglmgbiemopcpmoajjceehjbapmehmh |
URL Oficial | https://chromewebstore.google.com/detail/never-let-me-click-reddit/bgglmgbiemopcpmoajjceehjbapmehmh |
Descrição | When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link |
Tamanho do Arquivo | 36.2 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.0 |
Última Atualização | 2013-01-14 |
Data de Publicação | 2013-01-13 |
Classificação | 2.00/5 Total de 1 Avaliações |
Desenvolvedor | Matt Kim |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Never Let me Click Reddit NSFW Links at Work", "description": "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link", "manifest_version": 2, "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*", "https:\/\/www.reddit.com\/*" ], "css": [ "styles.css" ], "js": [ "jquery.js", "main.js" ] } ] } |