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

Cos'è Never Let me Click Reddit NSFW Links at Work?

Never Let me Click Reddit NSFW Links at Work è un'estensione di Chrome sviluppata da Matt Kim, e la sua funzione principale è "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Never Let me Click Reddit NSFW Links at Work

Scarica i file di estensione Never Let me Click Reddit NSFW Links at Work 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

                        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!                    

Informazioni di Base sull'Estensione

Nome Never Let me Click Reddit NSFW Links at Work Never Let me Click Reddit NSFW Links at Work
ID bgglmgbiemopcpmoajjceehjbapmehmh
URL Ufficiale https://chromewebstore.google.com/detail/never-let-me-click-reddit/bgglmgbiemopcpmoajjceehjbapmehmh
Descrizione When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link
Dimensione del File 36.2 KB
Conteggio Installazioni 18
Versione Corrente 1.0
Ultimo Aggiornamento 2013-01-14
Data di Pubblicazione 2013-01-13
Valutazione 2.00/5 Totale 1 Valutazioni
Sviluppatore Matt Kim
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}