NSFW All
Adds NSFW posts to the /r/all feed on reddit
什么是NSFW All?
NSFW All是由nsfwallext开发的Chrome扩展程序,该扩展的主要功能是“Adds NSFW posts to the /r/all feed on reddit”。
扩展截图
下载NSFW All扩展crx文件
下载NSFW All扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension to add NSFW posts back to the /r/all feed. Uses a configurable multireddit to fetch posts and then attempts to add them to the feed in the position reddit would have ranked them. Click on the extension's button to configure and then visit /r/all. New reddit currently not supported at all so expect strange behavior if attempting to use there.
扩展基本信息
名称 | |
ID | kkgfmppgfjlomhijlklhiploceoekhgn |
官方URL | https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn |
简介 | Adds NSFW posts to the /r/all feed on reddit |
文件大小 | 9.38 KB |
安装次数 | 97 |
当前版本 | 1.1 |
更新时间 | 2021-11-12 |
上架时间 | 2021-11-12 |
开发者 | nsfwallext |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NSFW All", "description": "Adds NSFW posts to the \/r\/all feed on reddit", "version": "1.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/r\/all*" ], "js": [ "nsfw.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "resources": [ "html\/submission.html" ] } ], "action": { "default_popup": "html\/popup.html" }, "permissions": [ "storage" ], "icons": { "128": "icons\/icon128.png" } } |