Redactor

Redact social media posts that match word filters.

Wat is Redactor?

Redactor is een Chrome-extensie ontwikkeld door https://akr.am, en de belangrijkste functie is "Redact social media posts that match word filters.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Redactor

Download Redactor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Redactor Redactor
ID niopomnhlbbadedejhkpmioegnhpbche
Officiële URL https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche
Beschrijving Redact social media posts that match word filters.
Bestandsgrootte 16.69 KB
Aantal Installaties 73
Huidige Versie 1.1.0
Laatst Bijgewerkt 2023-08-09
Publicatiedatum 2019-09-22
Ontwikkelaar https://akr.am
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/mohd-akram/redactor/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}