Quick Query Editor and CSV Exporter

This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.

什么是Quick Query Editor and CSV Exporter?

Quick Query Editor and CSV Exporter是由https://sanjaykeynotes.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.”。

扩展截图

screenshot

下载Quick Query Editor and CSV Exporter扩展crx文件

下载Quick Query Editor and CSV Exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This tool/extension used to append object field in Query Editor on single click into Salesforce Console screen as well as exporter grid result as CSV.


Note : For used easily have to open developer console into Chrome Tab.                    

扩展基本信息

名称 Quick Query Editor and CSV Exporter Quick Query Editor and CSV Exporter
ID fpeakcladndghikobmooojkbhkinlhck
官方URL https://chromewebstore.google.com/detail/quick-query-editor-and-cs/fpeakcladndghikobmooojkbhkinlhck
简介 This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.
文件大小 11.43 KB
安装次数 31
当前版本 0.1.4
更新时间 2018-04-16
上架时间 2018-04-16
开发者 https://sanjaykeynotes.blogspot.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Query Editor and CSV Exporter",
    "version": "0.1.4",
    "manifest_version": 2,
    "description": "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.",
    "icons": {
        "16": "images\/soql16.png",
        "128": "images\/soql128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Quick Query Editor and CSV Exporter"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab"
    ]
}