Dead Namerator

Replaces dead name & pronouns

Was ist Dead Namerator?

Dead Namerator ist eine Chrome-Erweiterung, die von developerlady21 entwickelt wurde, und ihr Hauptmerkmal ist "Replaces dead name & pronouns".

Erweiterungsscreenshots

screenshot

Dead Namerator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dead Namerator-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

                        This is a simple extension that replaces a person's dead name and pronouns with their actual name and pronouns. There are many trans kids out there who may be unable to change their legal name or to come out at all, and have to look at their dead name whenever they access school or medical records. Though there are already a few examples of this kind of extension available, I wanted to add in a pronoun replacement as well, which I didn't see in other extensions.

Use the options page to fill out your dead name and pronouns and actual name and pronouns.                    

Grundlegende Informationen zur Erweiterung

Name Dead Namerator Dead Namerator
ID ajbpjdjclfjiicggiefackmnhinigdgm
Offizielle URL https://chromewebstore.google.com/detail/dead-namerator/ajbpjdjclfjiicggiefackmnhinigdgm
Beschreibung Replaces dead name & pronouns
Dateigröße 57.24 KB
Installationsanzahl 164
Aktuelle Version 0.1
Letztes Update 2021-11-16
Veröffentlichungsdatum 2021-11-16
Bewertung 3.25/5 Insgesamt 4 Bewertungen
Entwickler developerlady21
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dead Namerator",
    "description": "Replaces dead name & pronouns",
    "version": "0.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*"
            ],
            "js": [
                "main-content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "options.html",
    "icons": {
        "128": "images\/heart.png"
    }
}