NSFW Filter
This extension allows the user to view only NSFW posts on Reddit.
什么是NSFW Filter?
NSFW Filter是由NSFWFilter开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to view only NSFW posts on Reddit.”。
扩展截图
下载NSFW Filter扩展crx文件
下载NSFW Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An NSFW FIlter that allows users to see NSFW content on Reddit.
扩展基本信息
名称 | NSFW Filter |
ID | kcbhaaeppldaemnnbpoaloiogmenibmh |
官方URL | https://chrome.google.com/webstore/detail/nsfw-filter/kcbhaaeppldaemnnbpoaloiogmenibmh |
简介 | This extension allows the user to view only NSFW posts on Reddit. |
文件大小 | 7.94 KB |
安装次数 | 425 |
当前版本 | 0.1 |
更新时间 | 2017-10-24 |
上架时间 | 2017-10-24 |
评分 | 3.50/5 共2次评分 |
开发者 | NSFWFilter |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NSFW Filter", "description": "This extension allows the user to view only NSFW posts on Reddit.", "version": "0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.reddit.com\/*" ], "js": [ ".\/nsfw.js" ], "run_at": "document_end" } ] } |