Salesforce Searchbox
A simple search box on top of all configuration items of salesforce setup items.
Vad är Salesforce Searchbox?
Salesforce Searchbox är en Chrome-tillägg utvecklad av Sid, och dess huvudfunktion är "A simple search box on top of all configuration items of salesforce setup items.".
Tilläggsskärmbilder
Ladda ner Salesforce Searchbox-förlängningens CRX-fil
Ladda ner Salesforce Searchbox-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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]
Grundläggande Information om Tillägg
Namn | Salesforce Searchbox |
ID | moaokcjghnjifeeahifofckbmhofjdbi |
Officiell webbadress | https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi |
Beskrivning | A simple search box on top of all configuration items of salesforce setup items. |
Filstorlek | 36.98 KB |
Antal Installationer | 1,371 |
Aktuell Version | 2.1 |
Senast Uppdaterad | 2014-09-22 |
Publiceringsdatum | 2014-09-22 |
Betyg | 4.19/5 Totalt 16 Betyg |
Utvecklare | Sid |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } ] } |