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 هو إضافة Chrome تم تطويرها بواسطة Matt Kim، والميزة الرئيسية لها هي "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Never Let me Click Reddit NSFW Links at Work

قم بتنزيل ملفات الامتداد Never Let me Click Reddit NSFW Links at Work بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}