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”。
擴展截圖
下載Never Let me Click Reddit NSFW Links at Work擴展crx文件
下載Never Let me Click Reddit NSFW Links at Work擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | bgglmgbiemopcpmoajjceehjbapmehmh |
官方網址 | 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" ] } ] } |