Redactor

Redact social media posts that match word filters.

Was ist Redactor?

Redactor ist eine Chrome-Erweiterung, die von https://akr.am entwickelt wurde, und ihr Hauptmerkmal ist "Redact social media posts that match word filters.".

Erweiterungsscreenshots

screenshot
screenshot

Redactor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redactor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Redactor Redactor
ID niopomnhlbbadedejhkpmioegnhpbche
Offizielle URL https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche
Beschreibung Redact social media posts that match word filters.
Dateigröße 16.69 KB
Installationsanzahl 73
Aktuelle Version 1.1.0
Letztes Update 2023-08-09
Veröffentlichungsdatum 2019-09-22
Entwickler https://akr.am
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/mohd-akram/redactor/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}