APEX Remote Action Timings
This extension get the timings of remote actions(sf) and web service API
Vad är APEX Remote Action Timings?
APEX Remote Action Timings är en Chrome-tillägg utvecklad av rkasi, och dess huvudfunktion är "This extension get the timings of remote actions(sf) and web service API".
Ladda ner APEX Remote Action Timings-förlängningens CRX-fil
Ladda ner APEX Remote Action Timings-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform. Grundläggande Information om Tillägg
| Namn | |
| ID | mfcijmldfghocdaciemcehjlljodimkd |
| Officiell webbadress | https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd |
| Beskrivning | This extension get the timings of remote actions(sf) and web service API |
| Filstorlek | 244 KB |
| Antal Installationer | 21 |
| Aktuell Version | 1.2.1 |
| Senast Uppdaterad | 2017-03-01 |
| Publiceringsdatum | 2017-03-01 |
| Utvecklare | rkasi |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |