Salesforce Schema Builder Expander
Expands Salesforce schema builder to have more real estate to visualise
Co je Salesforce Schema Builder Expander?
Salesforce Schema Builder Expander je rozšíření Chrome vyvinuté https://concret.io, a jeho hlavní funkcí je „Expands Salesforce schema builder to have more real estate to visualise“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Salesforce Schema Builder Expander
Stáhněte si soubory rozšíření Salesforce Schema Builder Expander ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Schema is best visualised with more real estate. You start by taking browser in full screen mode and hiding sidebar, this extension additionally hides the top header section, giving you extra 1-2 inches of screen. This extension only starts working when one is on Salesforce schema builder page, otherwise it sits quiet without consuming any machine resources.
Základní Informace o Rozšíření
Název | Salesforce Schema Builder Expander |
ID | mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
Oficiální URL | https://chromewebstore.google.com/detail/salesforce-schema-builder/mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
Popis | Expands Salesforce schema builder to have more real estate to visualise |
Velikost souboru | 88.53 KB |
Počet instalací | 1,318 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2015-02-16 |
Datum Vydání | 2015-02-16 |
Hodnocení | 4.80/5 Celkem 5 Hodnocení |
Vývojář | https://concret.io |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
URL Stránky Nápovědy | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Schema Builder Expander", "version": "1.0", "description": "Expands Salesforce schema builder to have more real estate to visualise", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "expand-19.png", "default_title": "Click to expand Schema Builder" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/_ui\/platform\/schema\/ui\/schemabuilder\/SchemaBuilderUi*" ], "js": [ "jquery-2.0.3.min.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "expand-48.png", "128": "expand-128.png" }, "web_accessible_resources": [ "jquery-2.0.3.min.map" ], "manifest_version": 2 } |