Salesforce Field Finder
This extension give your api name of any field you want.
O que é Salesforce Field Finder?
Salesforce Field Finder é uma extensão do Chrome desenvolvida por sachin.kadian, e sua principal característica é "This extension give your api name of any field you want.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Salesforce Field Finder
Baixe arquivos de extensão Salesforce Field Finder 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
This Extension saves your few clicks to get api name of any field. You can just choose your object name and get all the field with their api names. Search is also available in case of Large number of fields
Informações Básicas da Extensão
Nome | Salesforce Field Finder |
ID | hplajapbnicfielfbpefhfnkcokkidmh |
URL Oficial | https://chromewebstore.google.com/detail/salesforce-field-finder/hplajapbnicfielfbpefhfnkcokkidmh |
Descrição | This extension give your api name of any field you want. |
Tamanho do Arquivo | 331 KB |
Contagem de Instalações | 909 |
Versão Atual | 1.1 |
Última Atualização | 2015-09-03 |
Data de Publicação | 2015-09-03 |
Classificação | 4.00/5 Total de 4 Avaliações |
Desenvolvedor | sachin.kadian |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Field Finder", "description": "This extension give your api name of any field you want.", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "background": { "scripts": [ "jquery.js", "background.js" ] }, "content_scripts": [ { "js": [ "jquery.js", "forcetk.js", "contentScript.js" ], "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ] } ] } |