Salesforce Schema Builder Expander
Expands Salesforce schema builder to have more real estate to visualise
Salesforce Schema Builder Expanderคืออะไร?
Salesforce Schema Builder Expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://concret.io และคุณลักษณะหลักของมันคือ "Expands Salesforce schema builder to have more real estate to visualise"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Schema Builder Expander
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Schema Builder Expander ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Schema is best visualised with more real estate. You start by taking browser in full screen mode and hiding sidebar, this extension additionally hides the top header section, giving you extra 1-2 inches of screen. This extension only starts working when one is on Salesforce schema builder page, otherwise it sits quiet without consuming any machine resources.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Schema Builder Expander |
ID | mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-schema-builder/mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
คำอธิบาย | Expands Salesforce schema builder to have more real estate to visualise |
ขนาดไฟล์ | 88.53 KB |
จำนวนการติดตั้ง | 1,318 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2015-02-16 |
วันที่เผยแพร่ | 2015-02-16 |
คะแนน | 4.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://concret.io |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
URL หน้าช่วยเหลือ | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Schema Builder Expander", "version": "1.0", "description": "Expands Salesforce schema builder to have more real estate to visualise", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "expand-19.png", "default_title": "Click to expand Schema Builder" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/_ui\/platform\/schema\/ui\/schemabuilder\/SchemaBuilderUi*" ], "js": [ "jquery-2.0.3.min.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "expand-48.png", "128": "expand-128.png" }, "web_accessible_resources": [ "jquery-2.0.3.min.map" ], "manifest_version": 2 } |