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

Never Let me Click Reddit NSFW Links at Work란 무엇입니까?

Never Let me Click Reddit NSFW Links at Work은(는) Matt Kim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link"입니다.

확장 프로그램 스크린샷

screenshot

Never Let me Click Reddit NSFW Links at Work 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Never Let me Click Reddit NSFW Links at Work Never Let me Click Reddit NSFW Links at Work
ID bgglmgbiemopcpmoajjceehjbapmehmh
공식 URL https://chromewebstore.google.com/detail/never-let-me-click-reddit/bgglmgbiemopcpmoajjceehjbapmehmh
설명 When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link
파일 크기 36.2 KB
설치 횟수 18
현재 버전 1.0
최근 업데이트 2013-01-14
출시 날짜 2013-01-13
평점 2.00/5 총 1 개의 평점
개발자 Matt Kim
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}