APEX Remote Action Timings

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

Wat is APEX Remote Action Timings?

APEX Remote Action Timings is een Chrome-extensie ontwikkeld door rkasi, en de belangrijkste functie is "This extension get the timings of remote actions(sf) and web service API".

Download het CRX-bestand van de extensie APEX Remote Action Timings

Download APEX Remote Action Timings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam APEX Remote Action Timings APEX Remote Action Timings
ID mfcijmldfghocdaciemcehjlljodimkd
Officiële URL https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd
Beschrijving This extension get the timings of remote actions(sf) and web service API
Bestandsgrootte 244 KB
Aantal Installaties 21
Huidige Versie 1.2.1
Laatst Bijgewerkt 2017-03-01
Publicatiedatum 2017-03-01
Ontwikkelaar rkasi
Betalingswijze free
Ondersteunde Talen 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"
    }
}