Deadname Remover

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

Wat is Deadname Remover?

Deadname Remover is een Chrome-extensie ontwikkeld door Ari Gibson, en de belangrijkste functie is "An easy to use Google Chrome plugin to automatically remove and replace deadnames".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Deadname Remover

Download Deadname Remover-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

                        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.                    

Basisinformatie over de Extensie

Naam Deadname Remover Deadname Remover
ID cceilgmnkeijahkehfcgfalepihfbcag
Officiële URL https://chromewebstore.google.com/detail/deadname-remover/cceilgmnkeijahkehfcgfalepihfbcag
Beschrijving An easy to use Google Chrome plugin to automatically remove and replace deadnames
Bestandsgrootte 31.7 KB
Aantal Installaties 38,733
Huidige Versie 1.2.3
Laatst Bijgewerkt 2022-12-13
Publicatiedatum 2020-04-11
Beoordeling 4.56/5 Totaal 369 Beoordelingen
Ontwikkelaar Ari Gibson
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/arimgibson/Deadname-Remover
Help Pagina-URL https://github.com/arimgibson/Deadname-Remover
Ondersteunde Talen 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"
        }
    }
}