Quick Query

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

Apa itu Quick Query?

Quick Query adalah ekstensi Chrome yang dikembangkan oleh udaykiran.uday, dan fitur utamanya adalah "This extension allows you to query the currently logged in Force.com organization.".

Unduh Berkas CRX Ekstensi Quick Query

Unduh file ekstensi Quick Query dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Quick Query Quick Query
ID fojkfhhigpkhlbbnlajaeiccngfeekkg
URL Resmi https://chromewebstore.google.com/detail/quick-query/fojkfhhigpkhlbbnlajaeiccngfeekkg
Deskripsi This extension allows you to query the currently logged in Force.com organization.
Ukuran File 108 KB
Jumlah Instalasi 35
Versi Saat Ini 0.1
Terakhir Diperbarui 2016-12-02
Tanggal Publikasi 2016-12-02
Penilaian 5.00/5 Total 5 Penilaian
Pengembang udaykiran.uday
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}