Redactor
Redact social media posts that match word filters.
Co to jest Redactor?
Redactor to rozszerzenie Chrome opracowane przez https://akr.am, a jego główną funkcją jest „Redact social media posts that match word filters.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Redactor
Pobierz pliki rozszerzeń Redactor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
Oficjalny URL | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
Opis | Redact social media posts that match word filters. |
Rozmiar pliku | 16.69 KB |
Liczba instalacji | 73 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2023-08-09 |
Data Publikacji | 2019-09-22 |
Deweloper | https://akr.am |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/mohd-akram/redactor/issues |
Obsługiwane Języki | 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" ] } ] } |