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.
Co to jest Quick Query Editor and CSV Exporter?
Quick Query Editor and CSV Exporter to rozszerzenie Chrome opracowane przez https://sanjaykeynotes.blogspot.com, a jego główną funkcją jest „This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Quick Query Editor and CSV Exporter
Pobierz pliki rozszerzeń Quick Query Editor and CSV Exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Quick Query Editor and CSV Exporter |
ID | fpeakcladndghikobmooojkbhkinlhck |
Oficjalny URL | https://chromewebstore.google.com/detail/quick-query-editor-and-cs/fpeakcladndghikobmooojkbhkinlhck |
Opis | This extension help to append object field in Query Editor on single click into Console as well as exporter data as CSV. |
Rozmiar pliku | 11.43 KB |
Liczba instalacji | 31 |
Aktualna Wersja | 0.1.4 |
Ostatnia Aktualizacja | 2018-04-16 |
Data Publikacji | 2018-04-16 |
Deweloper | https://sanjaykeynotes.blogspot.com |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |