Data Explorer for Force.com

Execute Force.com SOQL queries from your browser

Cos'è Data Explorer for Force.com?

Data Explorer for Force.com è un'estensione di Chrome sviluppata da https://www.anupshinde.com, e la sua funzione principale è "Execute Force.com SOQL queries from your browser".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Data Explorer for Force.com

Scarica i file di estensione Data Explorer for Force.com 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

                        Data Explorer for Force.com allows Force.com developers to be more productive by allowing you to run complex queries on your Force.com environment.

This supports SOQL and SOSL queries. The results are automatically displayed in tabular format for easier navigation. Also supports paging and search within results for easier navigation

* This application uses the Force.com REST API and connects to the server directly - no intermediate servers                    

Informazioni di Base sull'Estensione

Nome Data Explorer for Force.com Data Explorer for Force.com
ID gbloanahneobjffpopabbapgdoahdljh
URL Ufficiale https://chromewebstore.google.com/detail/data-explorer-for-forceco/gbloanahneobjffpopabbapgdoahdljh
Descrizione Execute Force.com SOQL queries from your browser
Dimensione del File 282 KB
Conteggio Installazioni 374
Versione Corrente 1.0.2
Ultimo Aggiornamento 2016-03-13
Data di Pubblicazione 2016-03-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://www.anupshinde.com
Tipo di Pagamento free
Sito Web dell'Estensione http://www.anupshinde.com/chrome-extension-data-explorer-force-dot-com
URL della Pagina di Aiuto http://www.anupshinde.com/chrome-extension-data-explorer-force-dot-com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Data Explorer for Force.com",
    "description": "Execute Force.com SOQL queries from your browser",
    "version": "1.0.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/login.salesforce.com\/services\/oauth2\/success*data_explorer*"
            ],
            "js": [
                "\/oauth2\/oauth2_inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/anupshindeweb.appspot.com; object-src 'self'",
    "permissions": [
        "https:\/\/*.salesforce.com\/"
    ],
    "web_accessible_resources": [
        "oauth2\/oauth2.html"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "launch.js"
        ]
    }
}