APEX Remote Action Timings
This extension get the timings of remote actions(sf) and web service API
Co je APEX Remote Action Timings?
APEX Remote Action Timings je rozšíření Chrome vyvinuté rkasi, a jeho hlavní funkcí je „This extension get the timings of remote actions(sf) and web service API“.
Stáhnout soubor CRX rozšíření APEX Remote Action Timings
Stáhněte si soubory rozšíření APEX Remote Action Timings ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform.
Základní Informace o Rozšíření
Název | |
ID | mfcijmldfghocdaciemcehjlljodimkd |
Oficiální URL | https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd |
Popis | This extension get the timings of remote actions(sf) and web service API |
Velikost souboru | 244 KB |
Počet instalací | 21 |
Aktuální Verze | 1.2.1 |
Poslední Aktualizace | 2017-03-01 |
Datum Vydání | 2017-03-01 |
Vývojář | rkasi |
Typ Platby | free |
Podporované Jazyky | 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" } } |