APEX Remote Action Timings
This extension get the timings of remote actions(sf) and web service API
O que é APEX Remote Action Timings?
APEX Remote Action Timings é uma extensão do Chrome desenvolvida por rkasi, e sua principal característica é "This extension get the timings of remote actions(sf) and web service API".
Baixar o arquivo CRX da Extensão APEX Remote Action Timings
Baixe arquivos de extensão APEX Remote Action Timings 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
Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform.
Informações Básicas da Extensão
Nome | |
ID | mfcijmldfghocdaciemcehjlljodimkd |
URL Oficial | https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd |
Descrição | This extension get the timings of remote actions(sf) and web service API |
Tamanho do Arquivo | 244 KB |
Contagem de Instalações | 21 |
Versão Atual | 1.2.1 |
Última Atualização | 2017-03-01 |
Data de Publicação | 2017-03-01 |
Desenvolvedor | rkasi |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "APEX Remote Action Timings", "description": "This extension get the timings of remote actions(sf) and web service API", "version": "1.2.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "APEX Remote Action Timings" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/jquery.min.js", "js\/tabScript.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "storage", "unlimitedStorage" ], "background": { "persistance": false, "scripts": [ "js\/eventScript.js" ] }, "icons": { "48": "icon48.png", "128": "icon128.png" } } |