APEX Remote Action Timings

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

Qu'est-ce que APEX Remote Action Timings ?

APEX Remote Action Timings est une extension Chrome développée par rkasi, et sa fonction principale est "This extension get the timings of remote actions(sf) and web service API".

Télécharger le fichier CRX de l'extension APEX Remote Action Timings

Téléchargez les fichiers d'extension APEX Remote Action Timings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom APEX Remote Action Timings APEX Remote Action Timings
ID mfcijmldfghocdaciemcehjlljodimkd
URL Officiel https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd
Description This extension get the timings of remote actions(sf) and web service API
Taille du Fichier 244 KB
Nombre d'Installations 21
Version Actuelle 1.2.1
Dernière Mise à Jour 2017-03-01
Date de Publication 2017-03-01
Développeur rkasi
Type de Paiement free
Langues Prises en Charge 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"
    }
}