Salesforce Navigator for Lightning
Get more done in Salesforce - list and search records, make new ones, create a task or login as on the fly!
What is Salesforce Navigator for Lightning?
Salesforce Navigator for Lightning is a Chrome extension developed by https://www.summerlin.co, and its main feature is "Get more done in Salesforce - list and search records, make new ones, create a task or login as on the fly!".
Extension Screenshots
Download Salesforce Navigator for Lightning Extension CRX File
Download Salesforce Navigator for Lightning 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
Get more done in Salesforce - list and search records, make new ones, create a task or login as on the fly! This extension helps you get to any Salesforce page quickly. Just type in what you need to do! Compatible with Lightning and Classic NEW Version 4.0+ - Near total rewrite, should perform faster and more consistently - Themes are back! - Groundwork for multilanguage support has been added - want to contribute? Translate to a new language from the GitHub link! - Still a work in progress, please add bug reports to the Issues page on the repo Open the Navigator and - [New Permission] Can now save some settings, like theme and profile setup toggle, needs Storage permission to save preferences - [New Feature] Toggle all checkboxes on the page for when subtracting from a selection is faster - [Fix] Better Classic to Lightning URL mapping - [Fix] Better loading checks so it won't error out trying to set the style of the search box - Use the account merge tool by typing "Merge Accounts " Call the Classic Account Merge from either interface using the Account you are on and the Salesforce ID in your clipboard or entered into the command box. You can use a tool like Salesforce CopyPasteGo (https://summerlin.co/copypastego) to easily grab the ID of a Salesforce record - Add tasks on the fly by typing "! " - Search all records with "? " - Go to your Home page with "Home" - Object List views with "List " - Create a new record with "New " - Go directly a Setup page by typing it's name - Access Object customizations with "Fields" (e.g. "Contact Fields") - Switch between Lightning and Classic with "Toggle Lightning" - Commands looking weird? Run "Refresh Metadata" to make sure you have what you need - Login as another user with "Login as " ** You can hold shift or control when you press enter or click your mouse to open the selected item in a new tab ** Default shortcut keys (use Command instead of Control on Mac, and/or customize your options at chrome://extensions/shortcuts) Control + Shift + Space: Navigator Bar Control + Shift + A: Lightning App Menu Control + Shift + 1: Tasks Control + Shift + 2: Reports NOTES: - If you have a custom instance Domain Name, you may have to create a CSP Trusted Site Definition for your Classic domain URL in order for this extension to work - more info here https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/csp_trusted_sites.htm - If you have activated the RequireHTTPOnly setting you will not be able to use this extension to navigate to custom objects (feel free to make a pull request to add proper login handling!) Contribute to this extension at https://github.com/dannysummerlin/force-navigator UPDATE NOTES ######################################## 11/25/2023 - There still should be no such thing as billionaires, but fortunately @uri-tools has made a great contribution in getting things back to working as expected even with RequireHTTPOnly turned on, thanks Uri! 10/15/23 - There should be no such thing as billionaires, it is absolute fiction any person can "earn" that much -- Created a workaround for users with RequireHTTPOnly on to allow most functions to still work, excepting custom object navigation and Login As functionality 5/3/23 - #ZooeyZephyr is a duly elected member of the Montana House of Reps, but is not allowed to be present, silencing not just her but her constituents. You cannot say that you support democracy and yet exclude a representative because you don't like what they say. To be clear what Zephyr said was not an example of that stochastic terrorism (intentionally wording public statements to create an atmosphere of violence) that many members of the national Congress commit daily, but a strongly worded, impersonal criticism of proposed legislation. Trans rights are human rights. 7/5 - Pride Month never ends, go learn about Marsha P Johnson - fixed my fixing, Lightning URLs properly replace Classic links better now, still more to be done on this though 5/28 - Watch https://youtube.com/c/FDSignifire - Several fixes, added checkbox toggle, removed unused permission 9/11 - #justiceforbreonnataylor (182 days and counting) - Added the ability to call the Classic Account merge tool from an Account page. Be sure to have the ID of the Account you want to merge in your clipboard; added Lightning Record Page shortcut for custom objects 8/29 - Rest in Power Chadwick Boseman. Thanks to CKloppel for pointing out missing API and click handling, now updated to v49 and new-tab clicks work again 6/19 - Happy Juneteenth! Thanks to kacrouse for Custom Metadata Lightning handling, also updating several changed URLs across the platform Maintainer(s): Danny Summerlin open to others! based on Salesforce Navigator by Daniel Nakov and Wes Weingartner License MIT License Privacy Policy This extension only runs locally in communication with your instance of Salesforce. No data is collected from any user, nor is extension activity tracked or reported to a third-party. Terms of Service This extension is not intended to support the work of any individual or organization that is discriminatory or outright illegal.
Extension Basic Information
Name | Salesforce Navigator for Lightning |
ID | pbjjdhghffpemcglcadejmkcpnpmlklh |
Official URL | https://chromewebstore.google.com/detail/salesforce-navigator-for/pbjjdhghffpemcglcadejmkcpnpmlklh |
Description | Get more done in Salesforce - list and search records, make new ones, create a task or login as on the fly! |
File Size | 199 KB |
Installation Count | 8,880 |
Current Version | 4.8.20 |
Last Updated | 2023-11-26 |
Publish Date | 2020-06-19 |
Rating | 4.32/5 Total 19 Ratings |
Developer | https://www.summerlin.co |
[email protected] | |
Payment Type | free |
Extension Website | http://summerlin.co/sf-navigator-lightning |
Help Page URL | https://github.com/dannysummerlin/force-navigator |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Navigator for Lightning", "version": "4.8.20", "manifest_version": 2, "description": "Get more done in Salesforce - list and search records, make new ones, create a task or login as on the fly!", "page_action": { "default_icon": "images\/sf-navigator32.png", "default_popup": "popup.html", "default_title": "Salesforce Navigator for Lightning" }, "icons": { "16": "images\/sf-navigator16.png", "32": "images\/sf-navigator32.png", "48": "images\/sf-navigator48.png", "128": "images\/sf-navigator128.png" }, "web_accessible_resources": [ "images\/ajax-loader.gif", "images\/sf-navigator128.png" ], "background": { "scripts": [ "shared.js", "scripts\/pluralize.js", "background.js" ], "persistent": true }, "content_scripts": [ { "css": [ "styles\/main.css" ], "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.cloudforce.com\/*" ], "all_frames": true, "js": [ "contentScript.js", "shared.js", "scripts\/pluralize.js", "popup.js" ], "run_at": "document_end" } ], "commands": { "goToTasks": { "description": "Go directly to Tasks", "suggested_key": { "default": "Ctrl+Shift+1" } }, "goToReports": { "description": "Go directly to Reports", "suggested_key": { "default": "Ctrl+Shift+2" } }, "showSearchBox": { "description": "Open Search Box", "suggested_key": { "default": "Ctrl+Shift+Space" } }, "showAppMenu": { "description": "Open Lightning App Menu", "suggested_key": { "default": "Ctrl+Shift+A" } } }, "permissions": [ "activeTab", "management", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.cloudforce.com\/*", "storage", "clipboardRead", "cookies" ] } |