Dead Namerator

Replaces dead name & pronouns

Cos'è Dead Namerator?

Dead Namerator è un'estensione di Chrome sviluppata da developerlady21, e la sua funzione principale è "Replaces dead name & pronouns".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dead Namerator

Scarica i file di estensione Dead Namerator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Dead Namerator Dead Namerator
ID ajbpjdjclfjiicggiefackmnhinigdgm
URL Ufficiale https://chromewebstore.google.com/detail/dead-namerator/ajbpjdjclfjiicggiefackmnhinigdgm
Descrizione Replaces dead name & pronouns
Dimensione del File 57.24 KB
Conteggio Installazioni 164
Versione Corrente 0.1
Ultimo Aggiornamento 2021-11-16
Data di Pubblicazione 2021-11-16
Valutazione 3.25/5 Totale 4 Valutazioni
Sviluppatore developerlady21
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}