Salesforce Searchbox
A simple search box on top of all configuration items of salesforce setup items.
O que é Salesforce Searchbox?
Salesforce Searchbox é uma extensão do Chrome desenvolvida por Sid, e sua principal característica é "A simple search box on top of all configuration items of salesforce setup items.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Salesforce Searchbox
Baixe arquivos de extensão Salesforce Searchbox no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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]
Informações Básicas da Extensão
Nome | Salesforce Searchbox |
ID | moaokcjghnjifeeahifofckbmhofjdbi |
URL Oficial | https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi |
Descrição | A simple search box on top of all configuration items of salesforce setup items. |
Tamanho do Arquivo | 36.98 KB |
Contagem de Instalações | 1,371 |
Versão Atual | 2.1 |
Última Atualização | 2014-09-22 |
Data de Publicação | 2014-09-22 |
Classificação | 4.19/5 Total de 16 Avaliações |
Desenvolvedor | Sid |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } ] } |