Redactor

Redact social media posts that match word filters.

Что такое Redactor?

Redactor - это расширение Chrome, разработанное https://akr.am, и его основная функция - "Redact social media posts that match word filters.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Redactor

Скачайте файлы расширений 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 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
Электронная почта [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"
            ]
        }
    ]
}