Salesforce User Language Switcher
Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click.
What is Salesforce User Language Switcher?
Salesforce User Language Switcher is a Chrome extension developed by https://amdis-services.com, and its main feature is "Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click.".
Extension Screenshots
Download Salesforce User Language Switcher Extension CRX File
Download Salesforce User Language Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Salesforce User Language Switcher |
ID | eibbnodeofbegdecjhomdblocokifman |
Official URL | https://chromewebstore.google.com/detail/salesforce-user-language/eibbnodeofbegdecjhomdblocokifman |
Description | Salesforce User Language Switcher: A Chrome extension which lets you switch your current user's language with just one click. |
File Size | 197 KB |
Installation Count | 656 |
Current Version | 1.0.0.1 |
Last Updated | 2023-02-01 |
Publish Date | 2022-05-31 |
Rating | 5.00/5 Total 5 Ratings |
Developer | https://amdis-services.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/derroman/salesforce-user-language-switcher |
Help Page URL | https://github.com/derroman/salesforce-user-language-switcher/issues |
Supported Languages | 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" ] } ] } |