Unnoficial Reddit NSFW Filter for redesign
This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
什么是Unnoficial Reddit NSFW Filter for redesign?
Unnoficial Reddit NSFW Filter for redesign是由07mcteaguepet开发的Chrome扩展程序,该扩展的主要功能是“This extension removes NSFW items from reddit or makes them the only ones visible (your choice).”。
扩展截图
下载Unnoficial Reddit NSFW Filter for redesign扩展crx文件
下载Unnoficial Reddit NSFW Filter for redesign扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to choose to hide NSFW items from reddit or make them the only ones visible, or neither.
扩展基本信息
名称 | Unnoficial Reddit NSFW Filter for redesign |
ID | jjnnbblbdeabcdgifodkjpalefmgidam |
官方URL | https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam |
简介 | This extension removes NSFW items from reddit or makes them the only ones visible (your choice). |
文件大小 | 38.09 KB |
安装次数 | 38 |
当前版本 | 1.0 |
更新时间 | 2018-05-04 |
上架时间 | 2018-05-04 |
评分 | 1.00/5 共3次评分 |
开发者 | 07mcteaguepet |
电子邮箱 | [email protected] |
付费类型 | in_app |
扩展官网 | https://github.com/PeterMcteague/RedditNSFWToggler |
帮助页面URL | https://github.com/PeterMcteague/RedditNSFWToggler/issues |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unnoficial Reddit NSFW Filter for redesign", "version": "1.0", "options_page": "src\/options\/options.html", "options_ui": { "page": "src\/options\/options.html", "open_in_tab": false }, "manifest_version": 2, "description": "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).", "author": "Peter McTeague", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*", "https:\/\/www.reddit.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ], "browser_action": { "default_icon": "icons\/icon128.png", "default_title": "options", "popup": "src\/options\/options.html", "default_popup": "src\/options\/options.html" } } |