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
Apa itu Never Let me Click Reddit NSFW Links at Work?
Never Let me Click Reddit NSFW Links at Work adalah ekstensi Chrome yang dikembangkan oleh Matt Kim, dan fitur utamanya adalah "When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Never Let me Click Reddit NSFW Links at Work
Unduh file ekstensi Never Let me Click Reddit NSFW Links at Work dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Never Let me Click Reddit NSFW Links at Work |
ID | bgglmgbiemopcpmoajjceehjbapmehmh |
URL Resmi | https://chromewebstore.google.com/detail/never-let-me-click-reddit/bgglmgbiemopcpmoajjceehjbapmehmh |
Deskripsi | When on this extension prevents all NSFW links from ever being clicked on by mistake. No clickable comments or link |
Ukuran File | 36.2 KB |
Jumlah Instalasi | 18 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2013-01-14 |
Tanggal Publikasi | 2013-01-13 |
Penilaian | 2.00/5 Total 1 Penilaian |
Pengembang | Matt Kim |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |