Deadname Remover

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

Vad är Deadname Remover?

Deadname Remover är en Chrome-tillägg utvecklad av Ari Gibson, och dess huvudfunktion är "An easy to use Google Chrome plugin to automatically remove and replace deadnames".

Tilläggsskärmbilder

screenshot

Ladda ner Deadname Remover-förlängningens CRX-fil

Ladda ner Deadname Remover-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Deadname Remover Deadname Remover
ID cceilgmnkeijahkehfcgfalepihfbcag
Officiell webbadress https://chromewebstore.google.com/detail/deadname-remover/cceilgmnkeijahkehfcgfalepihfbcag
Beskrivning An easy to use Google Chrome plugin to automatically remove and replace deadnames
Filstorlek 31.7 KB
Antal Installationer 38,733
Aktuell Version 1.2.3
Senast Uppdaterad 2022-12-13
Publiceringsdatum 2020-04-11
Betyg 4.56/5 Totalt 369 Betyg
Utvecklare Ari Gibson
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/arimgibson/Deadname-Remover
Hjälpsida URL https://github.com/arimgibson/Deadname-Remover
Stödda Språk 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"
        }
    }
}