Deadname Remover

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

Co to jest Deadname Remover?

Deadname Remover to rozszerzenie Chrome opracowane przez Ari Gibson, a jego główną funkcją jest „An easy to use Google Chrome plugin to automatically remove and replace deadnames”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Deadname Remover

Pobierz pliki rozszerzeń Deadname Remover w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Deadname Remover Deadname Remover
ID cceilgmnkeijahkehfcgfalepihfbcag
Oficjalny URL https://chromewebstore.google.com/detail/deadname-remover/cceilgmnkeijahkehfcgfalepihfbcag
Opis An easy to use Google Chrome plugin to automatically remove and replace deadnames
Rozmiar pliku 31.7 KB
Liczba instalacji 38,733
Aktualna Wersja 1.2.3
Ostatnia Aktualizacja 2022-12-13
Data Publikacji 2020-04-11
Ocena 4.56/5 Łącznie 369 Oceny
Deweloper Ari Gibson
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/arimgibson/Deadname-Remover
Adres URL Strony Pomocy https://github.com/arimgibson/Deadname-Remover
Obsługiwane Języki 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"
        }
    }
}