Salesforce Quick Shortcuts
Easy access to Salesforce's Setup page options and Object Manager's Objects via a quick access bar on all Lightning pages
Salesforce Quick Shortcuts란 무엇입니까?
Salesforce Quick Shortcuts은(는) msg.pelleg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy access to Salesforce's Setup page options and Object Manager's Objects via a quick access bar on all Lightning pages"입니다.
확장 프로그램 스크린샷
Salesforce Quick Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Salesforce Quick Shortcuts is a tool that provides shortcuts to Salesforce's Setup pages and Object Manager Objects via a quick access bar on all Lightning pages. It's a simple and user-friendly UI that allows users to access important Salesforce information with ease. For Windows, Open the Modal with Ctrl+q For Mac, Open the Modal with Command+k ####FEATURES#### Shortcuts to all Salesforce Setup pages. Shortcuts to all Standard sObject pages. Shortcuts to Listview of sObjects. Customize default hotkey to open modal. Customize to open new links in a new tab or same tab. Add your own custom shortcuts URLs. Add your own custom Objects shortcuts. Favorites - saves your most frequently used shortcuts. Choose what custom shortcuts and objects will be shown based on orgs. Enter an Id to the shortcut page and press Enter to be redirect to a specific Use the mouse less by switching between tabs by Tab button.
확장 프로그램 기본 정보
이름 | Salesforce Quick Shortcuts |
ID | leeefcfmjgdaglhpdkgilpnjiklmbidb |
공식 URL | https://chromewebstore.google.com/detail/salesforce-quick-shortcut/leeefcfmjgdaglhpdkgilpnjiklmbidb |
설명 | Easy access to Salesforce's Setup page options and Object Manager's Objects via a quick access bar on all Lightning pages |
파일 크기 | 3.7 MB |
설치 횟수 | 967 |
현재 버전 | 2.0.6 |
최근 업데이트 | 2024-01-07 |
출시 날짜 | 2022-09-07 |
평점 | 4.92/5 총 12 개의 평점 |
개발자 | msg.pelleg |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.linkedin.com/in/pelleg-maimon-81853aa7/ |
도움말 페이지 URL | https://github.com/bigkemp/Salesforce-Quick-Access-Bar |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Quick Shortcuts", "description": "Easy access to Salesforce's Setup page options and Object Manager's Objects via a quick access bar on all Lightning pages", "version": "2.0.6", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": "resources\/icon16.png" }, "icons": { "16": "resources\/icon16.png", "32": "resources\/icon32.png", "48": "resources\/icon48.png", "128": "resources\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.lightning.force.com\/*", "https:\/\/*\/lightning\/setup\/*" ], "js": [ "new-modal-index.js" ], "css": [ "new-modal-index.css", "new-extension-popup.css" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "data\/*.json", "new-extension-popup.css", "new-extension-popup.html", "new-extension-popup.js", "handlers\/*.js", "new-modal-index.css", "new-modal-index.html", "resources\/*.png", "resources\/*.svg" ], "matches": [ "https:\/\/*.lightning.force.com\/*" ] } ] } |