Deadname Remover

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

Qu'est-ce que Deadname Remover ?

Deadname Remover est une extension Chrome développée par Ari Gibson, et sa fonction principale est "An easy to use Google Chrome plugin to automatically remove and replace deadnames".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Deadname Remover

Téléchargez les fichiers d'extension Deadname Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Deadname Remover Deadname Remover
ID cceilgmnkeijahkehfcgfalepihfbcag
URL Officiel https://chromewebstore.google.com/detail/deadname-remover/cceilgmnkeijahkehfcgfalepihfbcag
Description An easy to use Google Chrome plugin to automatically remove and replace deadnames
Taille du Fichier 31.7 KB
Nombre d'Installations 38,733
Version Actuelle 1.2.3
Dernière Mise à Jour 2022-12-13
Date de Publication 2020-04-11
Évaluation 4.56/5 Total 369 Évaluations
Développeur Ari Gibson
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/arimgibson/Deadname-Remover
URL de la Page d'Aide https://github.com/arimgibson/Deadname-Remover
Langues Prises en Charge 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"
        }
    }
}