Redactor
Redact social media posts that match word filters.
What is Redactor?
Redactor is a Chrome extension developed by https://akr.am, and its main feature is "Redact social media posts that match word filters.".
Extension Screenshots
Download Redactor Extension CRX File
Download Redactor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
Official URL | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
Description | Redact social media posts that match word filters. |
File Size | 16.69 KB |
Installation Count | 73 |
Current Version | 1.1.0 |
Last Updated | 2023-08-09 |
Publish Date | 2019-09-22 |
Developer | https://akr.am |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/mohd-akram/redactor/issues |
Supported Languages | 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" ] } ] } |