Quick Query
This extension allows you to query the currently logged in Force.com organization.
ما هو Quick Query؟
Quick Query هو إضافة Chrome تم تطويرها بواسطة udaykiran.uday، والميزة الرئيسية لها هي "This extension allows you to query the currently logged in Force.com organization.".
تحميل ملف CRX للإضافة Quick Query
قم بتنزيل ملفات الامتداد Quick Query بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a plugin for Salesforce developer with this You can easily write a SOQL and Fetch results With out opening Developer console or Work Bench
معلومات أساسية عن التمديد
الاسم | Quick Query |
ID | fojkfhhigpkhlbbnlajaeiccngfeekkg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/quick-query/fojkfhhigpkhlbbnlajaeiccngfeekkg |
الوصف | This extension allows you to query the currently logged in Force.com organization. |
حجم الملف | 108 KB |
عدد التثبيتات | 35 |
النسخة الحالية | 0.1 |
آخر تحديث | 2016-12-02 |
تاريخ النشر | 2016-12-02 |
تقييم | 5.00/5 مجموع تقييمات 5 |
المطور | udaykiran.uday |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Query", "version": "0.1", "description": "This extension allows you to query the currently logged in Force.com organization.", "author": "Ud@y", "permissions": [ "tabs", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "js\/jquery.js", "js\/forcetk.js", "js\/contentscript.js" ], "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ] } ], "web_accessible_resources": [ "js\/jquery-2.0.3.min.map" ] } |