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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}