Quick Query

This extension allows you to query the currently logged in Force.com organization.

Cos'è Quick Query?

Quick Query è un'estensione di Chrome sviluppata da udaykiran.uday, e la sua funzione principale è "This extension allows you to query the currently logged in Force.com organization.".

Scarica il file CRX dell'estensione Quick Query

Scarica i file di estensione Quick Query 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

                        This is a plugin for Salesforce developer with this You can easily write a SOQL and Fetch results With out opening Developer console or Work Bench                    

Informazioni di Base sull'Estensione

Nome Quick Query Quick Query
ID fojkfhhigpkhlbbnlajaeiccngfeekkg
URL Ufficiale https://chromewebstore.google.com/detail/quick-query/fojkfhhigpkhlbbnlajaeiccngfeekkg
Descrizione This extension allows you to query the currently logged in Force.com organization.
Dimensione del File 108 KB
Conteggio Installazioni 35
Versione Corrente 0.1
Ultimo Aggiornamento 2016-12-02
Data di Pubblicazione 2016-12-02
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore udaykiran.uday
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Query",
    "version": "0.1",
    "description": "This extension allows you to query the currently logged in Force.com organization.",
    "author": "Ud@y",
    "permissions": [
        "tabs",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/forcetk.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/jquery-2.0.3.min.map"
    ]
}