Salesforce Org Bookmarks
Displays bookmarks related to current Salesforce org
Salesforce Org Bookmarksคืออะไร?
Salesforce Org Bookmarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shai Fisher และคุณลักษณะหลักของมันคือ "Displays bookmarks related to current Salesforce org"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Org Bookmarks
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } |