Deadname Remover

An easy to use Google Chrome plugin to automatically remove and replace deadnames

Cos'è Deadname Remover?

Deadname Remover è un'estensione di Chrome sviluppata da Ari Gibson, e la sua funzione principale è "An easy to use Google Chrome plugin to automatically remove and replace deadnames".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Deadname Remover

Scarica i file di estensione Deadname Remover 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

                        Once installed, a page should open where you can edit your name and deadname settings. 

To edit this later or to temporarily disable the plugin, click on the trans flag in the top right corner of your browser.                    

Informazioni di Base sull'Estensione

Nome Deadname Remover Deadname Remover
ID cceilgmnkeijahkehfcgfalepihfbcag
URL Ufficiale https://chromewebstore.google.com/detail/deadname-remover/cceilgmnkeijahkehfcgfalepihfbcag
Descrizione An easy to use Google Chrome plugin to automatically remove and replace deadnames
Dimensione del File 31.7 KB
Conteggio Installazioni 38,733
Versione Corrente 1.2.3
Ultimo Aggiornamento 2022-12-13
Data di Pubblicazione 2020-04-11
Valutazione 4.56/5 Totale 369 Valutazioni
Sviluppatore Ari Gibson
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/arimgibson/Deadname-Remover
URL della Pagina di Aiuto https://github.com/arimgibson/Deadname-Remover
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Deadname Remover",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "An easy to use Google Chrome plugin to automatically remove and replace deadnames",
    "homepage_url": "https:\/\/github.com\/WillHayCode\/Deadname-Remover",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "popup\/options.html"
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Deadname Remover Options",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}