Salesforce Schema Builder Expander

Expands Salesforce schema builder to have more real estate to visualise

Cos'è Salesforce Schema Builder Expander?

Salesforce Schema Builder Expander è un'estensione di Chrome sviluppata da https://concret.io, e la sua funzione principale è "Expands Salesforce schema builder to have more real estate to visualise".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Salesforce Schema Builder Expander

Scarica i file di estensione Salesforce Schema Builder Expander 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Salesforce Schema Builder Expander Salesforce Schema Builder Expander
ID mhmpcpfhhfdoeiejndcmogmnlomkfdkk
URL Ufficiale https://chromewebstore.google.com/detail/salesforce-schema-builder/mhmpcpfhhfdoeiejndcmogmnlomkfdkk
Descrizione Expands Salesforce schema builder to have more real estate to visualise
Dimensione del File 88.53 KB
Conteggio Installazioni 1,318
Versione Corrente 1.0
Ultimo Aggiornamento 2015-02-16
Data di Pubblicazione 2015-02-16
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore https://concret.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html
URL della Pagina di Aiuto http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html
Lingue Supportate 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
}