APEX Remote Action Timings

This extension get the timings of remote actions(sf) and web service API

APEX Remote Action Timings là gì?

APEX Remote Action Timings là một tiện ích mở rộng Chrome được phát triển bởi rkasi, và tính năng chính của nó là "This extension get the timings of remote actions(sf) and web service API".

Tải xuống tệp CRX của tiện ích mở rộng APEX Remote Action Timings

Tải xuống các tệp mở rộng APEX Remote Action Timings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Plug-in to track the elapsed times of Apex remote calls on Visual force pages in Salesforce 1 platform.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên APEX Remote Action Timings APEX Remote Action Timings
ID mfcijmldfghocdaciemcehjlljodimkd
URL Chính Thức https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd
Mô tả This extension get the timings of remote actions(sf) and web service API
Kích Thước Tệp 244 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2017-03-01
Ngày Phát Hành 2017-03-01
Nhà Phát Triển rkasi
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}