APEX Remote Action Timings

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

Co to jest APEX Remote Action Timings?

APEX Remote Action Timings to rozszerzenie Chrome opracowane przez rkasi, a jego główną funkcją jest „This extension get the timings of remote actions(sf) and web service API”.

Pobierz plik CRX rozszerzenia APEX Remote Action Timings

Pobierz pliki rozszerzeń APEX Remote Action Timings w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa APEX Remote Action Timings APEX Remote Action Timings
ID mfcijmldfghocdaciemcehjlljodimkd
Oficjalny URL https://chrome.google.com/webstore/detail/apex-remote-action-timing/mfcijmldfghocdaciemcehjlljodimkd
Opis This extension get the timings of remote actions(sf) and web service API
Rozmiar pliku 244 KB
Liczba instalacji 21
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2017-03-01
Data Publikacji 2017-03-01
Deweloper rkasi
Typ Płatności free
Obsługiwane Języki 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"
    }
}