Name Updater

Hide and update old names

什么是Name Updater?

Name Updater是由Ignui开发的Chrome扩展程序,该扩展的主要功能是“Hide and update old names”。

扩展截图

screenshot
screenshot
screenshot

下载Name Updater扩展crx文件

下载Name Updater扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Name Updater Name Updater
ID coedoljcjcnljgaipjbeohpckmpkbope
官方URL https://chromewebstore.google.com/detail/name-updater/coedoljcjcnljgaipjbeohpckmpkbope
简介 Hide and update old names
文件大小 114 KB
安装次数 47
当前版本 1.1.1
更新时间 2023-01-27
上架时间 2023-01-20
评分 5.00/5 共2次评分
开发者 Ignui
电子邮箱 [email protected]
付费类型 free
扩展官网 http://nameupdater.com/
支持的语言 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"
    }
}