Salesforce User Language Switcher

Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click.

Co je Salesforce User Language Switcher?

Salesforce User Language Switcher je rozšíření Chrome vyvinuté https://amdis-services.com, a jeho hlavní funkcí je „Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Salesforce User Language Switcher

Stáhněte si soubory rozšíření Salesforce User Language Switcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This little Google Chrome extension helps Salesforce users to switch their current user language with a single click. 

Working with customers who use their Orgs in multiple languages is always tricky and time-consuming, when it comes to translations and testing these.
In the current version of Salesforce you need 6+ clicks to change your own user language in your personal settings of Salesforce. 
And even worse, as the settings page does not open in a separate tab, you might even lose your current context. Annoying... 

And as we are developers and therefore love to make our lives easier, we've developed this little Google Chrome extension.                    

Základní Informace o Rozšíření

Název Salesforce User Language Switcher Salesforce User Language Switcher
ID eibbnodeofbegdecjhomdblocokifman
Oficiální URL https://chromewebstore.google.com/detail/salesforce-user-language/eibbnodeofbegdecjhomdblocokifman
Popis Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click.
Velikost souboru 197 KB
Počet instalací 656
Aktuální Verze 1.0.0.1
Poslední Aktualizace 2023-02-01
Datum Vydání 2022-05-31
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář https://amdis-services.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/derroman/salesforce-user-language-switcher
URL Stránky Nápovědy https://github.com/derroman/salesforce-user-language-switcher/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce User Language Switcher",
    "version": "1.0.0.1",
    "description": "Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Salesforce User Language Switcher",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}