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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rkasi, και η κύρια λειτουργία του είναι "This extension get the timings of remote actions(sf) and web service API".

Λήψη αρχείου CRX της επέκτασης APEX Remote Action Timings

Λήψη αρχείων επέκτασης APEX Remote Action Timings σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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