APEX Remote Action Timings
This extension get the timings of remote actions(sf) and web service API
ما هو APEX Remote Action Timings؟
APEX Remote Action Timings هو إضافة Chrome تم تطويرها بواسطة rkasi، والميزة الرئيسية لها هي "This extension get the timings of remote actions(sf) and web service API".
تحميل ملف CRX للإضافة APEX Remote Action Timings
قم بتنزيل ملفات الامتداد APEX Remote Action Timings بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform.
معلومات أساسية عن التمديد
الاسم | |
ID | mfcijmldfghocdaciemcehjlljodimkd |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd |
الوصف | This extension get the timings of remote actions(sf) and web service API |
حجم الملف | 244 KB |
عدد التثبيتات | 21 |
النسخة الحالية | 1.2.1 |
آخر تحديث | 2017-03-01 |
تاريخ النشر | 2017-03-01 |
المطور | rkasi |
نوع الدفع | free |
اللغات المدعومة | 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" } } |