Salesforce Schema Builder Expander
Expands Salesforce schema builder to have more real estate to visualise
What is Salesforce Schema Builder Expander?
Salesforce Schema Builder Expander is a Chrome extension developed by https://concret.io, and its main feature is "Expands Salesforce schema builder to have more real estate to visualise".
Extension Screenshots
Download Salesforce Schema Builder Expander Extension CRX File
Download Salesforce Schema Builder Expander extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Salesforce Schema Builder Expander |
ID | mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
Official URL | https://chromewebstore.google.com/detail/salesforce-schema-builder/mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
Description | Expands Salesforce schema builder to have more real estate to visualise |
File Size | 88.53 KB |
Installation Count | 1,318 |
Current Version | 1.0 |
Last Updated | 2015-02-16 |
Publish Date | 2015-02-16 |
Rating | 4.80/5 Total 5 Ratings |
Developer | https://concret.io |
[email protected] | |
Payment Type | free |
Extension Website | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
Help Page URL | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
Supported Languages | 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 } |