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 |
官方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" ] } ] } |