Salesforce Org Bookmarks
Displays bookmarks related to current Salesforce org
Salesforce Org Bookmarks란 무엇입니까?
Salesforce Org Bookmarks은(는) Shai Fisher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays bookmarks related to current Salesforce org"입니다.
확장 프로그램 스크린샷
Salesforce Org Bookmarks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SF Org Bookmarks stores your bookmarks for each Salesforce Org, and displays those bookmarks each time you log in this Org, So your don't get confused with other org's bookmarks, and can reach any page you would like faster. The bookmarks are stored in your local device (We do not have any access to it). New features and updates: 1.3.0: Transfer all URLs of one org to a new SF instance (e.g. eu5 -> na6); Detect Org id in Lightning (beta) 1.3.3: Fix title capture in Lightning 1.4.0: View and manage orgs list Copy URL to clipboard 1.4.1: Improve automatic name of new bookmark
확장 프로그램 기본 정보
이름 | Salesforce Org Bookmarks |
ID | jbkjfboldjlppbhmfgennndbdcbokbka |
공식 URL | https://chromewebstore.google.com/detail/salesforce-org-bookmarks/jbkjfboldjlppbhmfgennndbdcbokbka |
설명 | Displays bookmarks related to current Salesforce org |
파일 크기 | 83.5 KB |
설치 횟수 | 23 |
현재 버전 | 1.4.1 |
최근 업데이트 | 2022-11-07 |
출시 날짜 | 2019-03-07 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Shai Fisher |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Org Bookmarks", "description": "Displays bookmarks related to current Salesforce org", "version": "1.4.1", "browser_action": { "default_icon": "sfob-16.png", "default_popup": "bookmarksbar.html" }, "icons": { "16": "sfob-16.png", "128": "sfob-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.salesforce.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ], "js": [ "contentscript.js" ], "all_frames": true } ], "permissions": [ "storage", "tabs" ], "web_accessible_resources": [ "getorg.js" ] } |