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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension get the timings of remote actions(sf) and web service API"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में APEX Remote Action Timings एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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