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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sanjaykeynotes.blogspot.com และคุณลักษณะหลักของมันคือ "This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Query Editor and CSV Exporter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}