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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } } |