Dead Namerator

Replaces dead name & pronouns

Hvad er Dead Namerator?

Dead Namerator er en Chrome-udvidelse udviklet af developerlady21, og dens hovedfunktion er "Replaces dead name & pronouns".

Udvidelsesskærmbilleder

screenshot

Download Dead Namerator-udvidelses-CRX-fil

Download Dead Namerator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Dead Namerator Dead Namerator
ID ajbpjdjclfjiicggiefackmnhinigdgm
Officiel URL https://chromewebstore.google.com/detail/dead-namerator/ajbpjdjclfjiicggiefackmnhinigdgm
Beskrivelse Replaces dead name & pronouns
Filstørrelse 57.24 KB
Antal Installationer 164
Nuværende Version 0.1
Senest Opdateret 2021-11-16
Udgivelsesdato 2021-11-16
Bedømmelse 3.25/5 Samlet 4 Bedømmelser
Udvikler developerlady21
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}