Salesforce Searchbox
A simple search box on top of all configuration items of salesforce setup items.
Salesforce Searchboxคืออะไร?
Salesforce Searchbox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sid และคุณลักษณะหลักของมันคือ "A simple search box on top of all configuration items of salesforce setup items."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Searchbox
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Searchbox ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Enough time is wasted on finding the class and label by creating views or searching for the same type of fields within an object . Tired of pressing more link every time ? I have a solution , try this extension , it brings in a simple search box, which will search in all configuration items on the page. takes care of pressing the more link. The plugin supports some basic regex searches ex: OR search - formula|lookup AND search - ^(?=.*\text1\b)(?=.*\text2\b) Don't forget to press "Enter" to search and "Esc" to cancel :) Developed by : Siddharth Nagavarapu Linked In :http://www.linkedin.com/in/siddharatha mailto:[email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Searchbox |
ID | moaokcjghnjifeeahifofckbmhofjdbi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi |
คำอธิบาย | A simple search box on top of all configuration items of salesforce setup items. |
ขนาดไฟล์ | 36.98 KB |
จำนวนการติดตั้ง | 1,371 |
เวอร์ชันปัจจุบัน | 2.1 |
อัปเดตครั้งล่าสุด | 2014-09-22 |
วันที่เผยแพร่ | 2014-09-22 |
คะแนน | 4.19/5 รวมทั้งหมด 16 คะแนน |
ผู้พัฒนา | Sid |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Searchbox", "short_name": "SF Search", "description": "A simple search box on top of all configuration items of salesforce setup items.", "version": "2.1", "permissions": [ "https:\/\/*.salesforce.com\/*", "http:\/\/*.salesforce.com\/*", "https:\/\/*.cloudforce.com\/*", "http:\/\/*.cloudforce.com\/*" ], "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "matches": [ "http:\/\/*.salesforce.com\/*", "https:\/\/*.salesforce.com\/*", "http:\/\/*.cloudforce.com\/*", "https:\/\/*.cloudforce.com\/*" ] } ] } |