Salesforce Org Bookmarks
Displays bookmarks related to current Salesforce org
Cos'è Salesforce Org Bookmarks?
Salesforce Org Bookmarks è un'estensione di Chrome sviluppata da Shai Fisher, e la sua funzione principale è "Displays bookmarks related to current Salesforce org".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Salesforce Org Bookmarks
Scarica i file di estensione Salesforce Org Bookmarks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Salesforce Org Bookmarks |
ID | jbkjfboldjlppbhmfgennndbdcbokbka |
URL Ufficiale | https://chromewebstore.google.com/detail/salesforce-org-bookmarks/jbkjfboldjlppbhmfgennndbdcbokbka |
Descrizione | Displays bookmarks related to current Salesforce org |
Dimensione del File | 83.5 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.4.1 |
Ultimo Aggiornamento | 2022-11-07 |
Data di Pubblicazione | 2019-03-07 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Shai Fisher |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |