Redactor
Redact social media posts that match word filters.
Hvad er Redactor?
Redactor er en Chrome-udvidelse udviklet af https://akr.am, og dens hovedfunktion er "Redact social media posts that match word filters.".
Udvidelsesskærmbilleder
Download Redactor-udvidelses-CRX-fil
Download Redactor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
Officiel URL | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
Beskrivelse | Redact social media posts that match word filters. |
Filstørrelse | 16.69 KB |
Antal Installationer | 73 |
Nuværende Version | 1.1.0 |
Senest Opdateret | 2023-08-09 |
Udgivelsesdato | 2019-09-22 |
Udvikler | https://akr.am |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/mohd-akram/redactor/issues |
Understøttede Sprog | 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" ] } ] } |