Redactor
Redact social media posts that match word filters.
Cos'è Redactor?
Redactor è un'estensione di Chrome sviluppata da https://akr.am, e la sua funzione principale è "Redact social media posts that match word filters.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Redactor
Scarica i file di estensione Redactor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
URL Ufficiale | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
Descrizione | Redact social media posts that match word filters. |
Dimensione del File | 16.69 KB |
Conteggio Installazioni | 73 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2023-08-09 |
Data di Pubblicazione | 2019-09-22 |
Sviluppatore | https://akr.am |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/mohd-akram/redactor/issues |
Lingue Supportate | 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" ] } ] } |