Salesforce Searchbox
A simple search box on top of all configuration items of salesforce setup items.
Qu'est-ce que Salesforce Searchbox ?
Salesforce Searchbox est une extension Chrome développée par Sid, et sa fonction principale est "A simple search box on top of all configuration items of salesforce setup items.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Salesforce Searchbox
Téléchargez les fichiers d'extension Salesforce Searchbox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | Salesforce Searchbox |
ID | moaokcjghnjifeeahifofckbmhofjdbi |
URL Officiel | https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi |
Description | A simple search box on top of all configuration items of salesforce setup items. |
Taille du Fichier | 36.98 KB |
Nombre d'Installations | 1,371 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2014-09-22 |
Date de Publication | 2014-09-22 |
Évaluation | 4.19/5 Total 16 Évaluations |
Développeur | Sid |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |