Redactor
Redact social media posts that match word filters.
Apa itu Redactor?
Redactor adalah ekstensi Chrome yang dikembangkan oleh https://akr.am, dan fitur utamanya adalah "Redact social media posts that match word filters.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Redactor
Unduh file ekstensi Redactor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
URL Resmi | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
Deskripsi | Redact social media posts that match word filters. |
Ukuran File | 16.69 KB |
Jumlah Instalasi | 73 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2023-08-09 |
Tanggal Publikasi | 2019-09-22 |
Pengembang | https://akr.am |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/mohd-akram/redactor/issues |
Bahasa yang Didukung | 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" ] } ] } |