APEX Remote Action Timings

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

Was ist APEX Remote Action Timings?

APEX Remote Action Timings ist eine Chrome-Erweiterung, die von rkasi entwickelt wurde, und ihr Hauptmerkmal ist "This extension get the timings of remote actions(sf) and web service API".

APEX Remote Action Timings-Erweiterungs-CRX-Datei herunterladen

Laden Sie APEX Remote Action Timings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name APEX Remote Action Timings APEX Remote Action Timings
ID mfcijmldfghocdaciemcehjlljodimkd
Offizielle URL https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd
Beschreibung This extension get the timings of remote actions(sf) and web service API
Dateigröße 244 KB
Installationsanzahl 21
Aktuelle Version 1.2.1
Letztes Update 2017-03-01
Veröffentlichungsdatum 2017-03-01
Entwickler rkasi
Zahlungsart free
Unterstützte Sprachen 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"
    }
}