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