Quick Query

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

Quick Query란 무엇입니까?

Quick Query은(는) udaykiran.uday에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to query the currently logged in Force.com organization."입니다.

Quick Query 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Quick Query Quick Query
ID fojkfhhigpkhlbbnlajaeiccngfeekkg
공식 URL https://chromewebstore.google.com/detail/quick-query/fojkfhhigpkhlbbnlajaeiccngfeekkg
설명 This extension allows you to query the currently logged in Force.com organization.
파일 크기 108 KB
설치 횟수 35
현재 버전 0.1
최근 업데이트 2016-12-02
출시 날짜 2016-12-02
평점 5.00/5 총 5 개의 평점
개발자 udaykiran.uday
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}