APEX Remote Action Timings
This extension get the timings of remote actions(sf) and web service API
Apa itu APEX Remote Action Timings?
APEX Remote Action Timings adalah ekstensi Chrome yang dikembangkan oleh rkasi, dan fitur utamanya adalah "This extension get the timings of remote actions(sf) and web service API".
Unduh Berkas CRX Ekstensi APEX Remote Action Timings
Unduh file ekstensi APEX Remote Action Timings dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform.
Informasi Dasar Ekstensi
Nama | |
ID | mfcijmldfghocdaciemcehjlljodimkd |
URL Resmi | https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd |
Deskripsi | This extension get the timings of remote actions(sf) and web service API |
Ukuran File | 244 KB |
Jumlah Instalasi | 21 |
Versi Saat Ini | 1.2.1 |
Terakhir Diperbarui | 2017-03-01 |
Tanggal Publikasi | 2017-03-01 |
Pengembang | rkasi |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |