Salesforce Searchbox
A simple search box on top of all configuration items of salesforce setup items.
Salesforce Searchbox क्या है?
Salesforce Searchbox Sid द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple search box on top of all configuration items of salesforce setup items."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Salesforce Searchbox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |