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.                    

擴展基本資訊

名稱 APEX Remote Action Timings APEX Remote Action Timings
ID mfcijmldfghocdaciemcehjlljodimkd
官方網址 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"
    }
}