Salesforce Org Bookmarks
Displays bookmarks related to current Salesforce org
Was ist Salesforce Org Bookmarks?
Salesforce Org Bookmarks ist eine Chrome-Erweiterung, die von Shai Fisher entwickelt wurde, und ihr Hauptmerkmal ist "Displays bookmarks related to current Salesforce org".
Erweiterungsscreenshots
Salesforce Org Bookmarks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce Org Bookmarks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Salesforce Org Bookmarks |
ID | jbkjfboldjlppbhmfgennndbdcbokbka |
Offizielle URL | https://chromewebstore.google.com/detail/salesforce-org-bookmarks/jbkjfboldjlppbhmfgennndbdcbokbka |
Beschreibung | Displays bookmarks related to current Salesforce org |
Dateigröße | 83.5 KB |
Installationsanzahl | 23 |
Aktuelle Version | 1.4.1 |
Letztes Update | 2022-11-07 |
Veröffentlichungsdatum | 2019-03-07 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Shai Fisher |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |