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是由rkasi开发的Chrome扩展程序,该扩展的主要功能是“This extension get the timings of remote actions(sf) and web service API”。
下载APEX Remote Action Timings扩展crx文件
下载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" } } |