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