Quick Query
This extension allows you to query the currently logged in Force.com organization.
Что такое Quick Query?
Quick Query - это расширение Chrome, разработанное udaykiran.uday, и его основная функция - "This extension allows you to query the currently logged in Force.com organization.".
Скачать файл CRX расширения Quick Query
Скачайте файлы расширений Quick Query в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        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                     Основная информация о расширении
| Название |  | 
| 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"
    ]
} | |