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 là gì?

Quick Query Editor and CSV Exporter là một tiện ích mở rộng Chrome được phát triển bởi https://sanjaykeynotes.blogspot.com, và tính năng chính của nó là "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quick Query Editor and CSV Exporter

Tải xuống các tệp mở rộng Quick Query Editor and CSV Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quick Query Editor and CSV Exporter Quick Query Editor and CSV Exporter
ID fpeakcladndghikobmooojkbhkinlhck
URL Chính Thức https://chromewebstore.google.com/detail/quick-query-editor-and-cs/fpeakcladndghikobmooojkbhkinlhck
Mô tả This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.
Kích Thước Tệp 11.43 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2018-04-16
Ngày Phát Hành 2018-04-16
Nhà Phát Triển https://sanjaykeynotes.blogspot.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}