APEX Remote Action Timings
This extension get the timings of remote actions(sf) and web service API
Cos'è APEX Remote Action Timings?
APEX Remote Action Timings è un'estensione di Chrome sviluppata da rkasi, e la sua funzione principale è "This extension get the timings of remote actions(sf) and web service API".
Scarica il file CRX dell'estensione APEX Remote Action Timings
Scarica i file di estensione APEX Remote Action Timings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform. Informazioni di Base sull'Estensione
| Nome | |
| ID | mfcijmldfghocdaciemcehjlljodimkd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd |
| Descrizione | This extension get the timings of remote actions(sf) and web service API |
| Dimensione del File | 244 KB |
| Conteggio Installazioni | 21 |
| Versione Corrente | 1.2.1 |
| Ultimo Aggiornamento | 2017-03-01 |
| Data di Pubblicazione | 2017-03-01 |
| Sviluppatore | rkasi |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |