Salesforce Object Finder
This extension allows you to find out in which object is located a specific field.
Salesforce Object Finderคืออะไร?
Salesforce Object Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paolo Pelliccione และคุณลักษณะหลักของมันคือ "This extension allows you to find out in which object is located a specific field."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Object Finder
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Object Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to find out in which object is located a specific field.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Object Finder |
ID | gdofopjmbeikonciibgfbcenjohdilap |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap |
คำอธิบาย | This extension allows you to find out in which object is located a specific field. |
ขนาดไฟล์ | 120 KB |
จำนวนการติดตั้ง | 196 |
เวอร์ชันปัจจุบัน | 0.13 |
อัปเดตครั้งล่าสุด | 2016-03-31 |
วันที่เผยแพร่ | 2016-03-30 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Paolo Pelliccione |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Object Finder", "description": "This extension allows you to find out in which object is located a specific field.", "version": "0.13", "icons": { "48": "icon.png" }, "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' http:\/\/jz01.ru https:\/\/www.paypalobjects.com\/js\/external\/; object-src 'self'", "permissions": [ "storage", "tabs", "background", "cookies", "activeTab", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ] } |