Redactor
Redact social media posts that match word filters.
什么是Redactor?
Redactor是由https://akr.am开发的Chrome扩展程序,该扩展的主要功能是“Redact social media posts that match word filters.”。
扩展截图
下载Redactor扩展crx文件
下载Redactor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Redactor lets you black out posts on Twitter, Reddit and Hacker News that match custom word filters. You can hover over redacted text to view it if you wish. To configure the word filters, go to the add-on's Options page. Words are case-sensitive and only match post text, not usernames.
扩展基本信息
名称 | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
官方URL | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
简介 | Redact social media posts that match word filters. |
文件大小 | 16.69 KB |
安装次数 | 73 |
当前版本 | 1.1.0 |
更新时间 | 2023-08-09 |
上架时间 | 2019-09-22 |
开发者 | https://akr.am |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/mohd-akram/redactor/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redactor", "version": "1.1.0", "description": "Redact social media posts that match word filters.", "icons": { "256": "icon.png" }, "options_ui": { "page": "options.html", "browser_style": true, "chrome_style": true }, "permissions": [ "storage" ], "applications": { "gecko": { "id": "[email protected]" } }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.reddit.com\/*", "*:\/\/*.news.ycombinator.com\/*" ], "js": [ "browser-polyfill.js", "main.js" ] } ] } |