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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ APEX Remote Action Timings APEX Remote Action Timings
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"
    }
}