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"
}
} | |