Name Updater

Hide and update old names

Name Updater क्या है?

Name Updater Ignui द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide and update old names"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Name Updater एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}