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文件
下載Salesforce Org Bookmarks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |