Data Explorer for Force.com
Execute Force.com SOQL queries from your browser
Data Explorer for Force.comคืออะไร?
Data Explorer for Force.com เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.anupshinde.com และคุณลักษณะหลักของมันคือ "Execute Force.com SOQL queries from your browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Data Explorer for Force.com
ดาวน์โหลดไฟล์ส่วนขยาย Data Explorer for Force.com ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Data Explorer for Force.com allows Force.com developers to be more productive by allowing you to run complex queries on your Force.com environment. This supports SOQL and SOSL queries. The results are automatically displayed in tabular format for easier navigation. Also supports paging and search within results for easier navigation * This application uses the Force.com REST API and connects to the server directly - no intermediate servers
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Data Explorer for Force.com |
ID | gbloanahneobjffpopabbapgdoahdljh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/data-explorer-for-forceco/gbloanahneobjffpopabbapgdoahdljh |
คำอธิบาย | Execute Force.com SOQL queries from your browser |
ขนาดไฟล์ | 282 KB |
จำนวนการติดตั้ง | 374 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2016-03-13 |
วันที่เผยแพร่ | 2016-03-13 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://www.anupshinde.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.anupshinde.com/chrome-extension-data-explorer-force-dot-com |
URL หน้าช่วยเหลือ | http://www.anupshinde.com/chrome-extension-data-explorer-force-dot-com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Data Explorer for Force.com", "description": "Execute Force.com SOQL queries from your browser", "version": "1.0.2", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/login.salesforce.com\/services\/oauth2\/success*data_explorer*" ], "js": [ "\/oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/anupshindeweb.appspot.com; object-src 'self'", "permissions": [ "https:\/\/*.salesforce.com\/" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ], "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "launch.js" ] } } |