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 |
Eメール | [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" ] } ] } |