Name Updater

Hide and update old names

Name Updater란 무엇입니까?

Name Updater은(는) Ignui에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide and update old names"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Name Updater 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}