Name Updater

Hide and update old names

¿Qué es Name Updater?

Name Updater es una extensión de Chrome desarrollada por Ignui, y su función principal es "Hide and update old names".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Name Updater

Descarga archivos de extensión Name Updater en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This is an extension for hiding and replacing any visible instances of your deadname while browsing the internet. This includes changing names on email and other accounts, swapping within email addresses, and hiding autofilled input fields for account logins that may use an old usernames or emails.

To configure, right click the extension icon and go to the options page. There, you can input any number of name substitutions you'd like to make, and configure which websites are filtered. As a general rule for the config, you can be very non-specific with capitalization etc, and just add more rows for specific cases. The most specific rules will be applied first!

The extension icon works as a way to quickly see the config for a website you're browsing, and you can click it to toggle filtering entirely on or off.                    

Información Básica de la Extensión

Nombre Name Updater Name Updater
ID coedoljcjcnljgaipjbeohpckmpkbope
URL Oficial https://chromewebstore.google.com/detail/name-updater/coedoljcjcnljgaipjbeohpckmpkbope
Descripción Hide and update old names
Tamaño del Archivo 114 KB
Cantidad de Instalaciones 47
Versión Actual 1.1.1
Última Actualización 2023-01-27
Fecha de Publicación 2023-01-20
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Ignui
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://nameupdater.com/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Name Updater",
    "manifest_version": 3,
    "version": "1.1.1",
    "description": "Hide and update old names",
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "content.css"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "document16.png",
            "32": "document32.png"
        },
        "default_title": "EasyID"
    },
    "icons": {
        "128": "icon.png"
    }
}