Name Updater

Hide and update old names

Name Updaterคืออะไร?

Name Updater เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ignui และคุณลักษณะหลักของมันคือ "Hide and update old names"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Name Updater

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}