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

What is Never Let me Click Reddit NSFW Links at Work?

Never Let me Click Reddit NSFW Links at Work is a Chrome extension developed by Matt Kim, and its main feature is "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link".

Extension Screenshots

screenshot

Download Never Let me Click Reddit NSFW Links at Work Extension CRX File

Download Never Let me Click Reddit NSFW Links at Work extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Never Let me Click Reddit NSFW Links at Work Never Let me Click Reddit NSFW Links at Work
ID bgglmgbiemopcpmoajjceehjbapmehmh
Official URL https://chromewebstore.google.com/detail/never-let-me-click-reddit/bgglmgbiemopcpmoajjceehjbapmehmh
Description When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link
File Size 36.2 KB
Installation Count 18
Current Version 1.0
Last Updated 2013-01-14
Publish Date 2013-01-13
Rating 2.00/5 Total 1 Ratings
Developer Matt Kim
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}