XHProf helper

Easy profiling for XHProf

Τι είναι το XHProf helper;

Το XHProf helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.donationbasedhosting.org, και η κύρια λειτουργία του είναι "Easy profiling for XHProf".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης XHProf helper

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

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

                        Profiling PHP code with XHProf is very powerful, but enabling XHProf by adding a GET variable is way too hard. This extension will help you to enable/disable profiling with ease.

✔ Profile with ease
✔ Custom profiling cookie name
✔ Domain whitelist (or regexes) for which to show the helper                    

Βασικές Πληροφορίες Επέκτασης

Όνομα XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
Επίσημο URL https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Περιγραφή Easy profiling for XHProf
Μέγεθος Αρχείου 109 KB
Αριθμός Εγκαταστάσεων 229
Τρέχουσα Έκδοση 1.2.0
Τελευταία Ενημέρωση 2017-01-03
Ημερομηνία Δημοσίευσης 2017-01-03
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://www.donationbasedhosting.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Tuurlijk/XHProf-helper-webextension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XHProf helper",
    "version": "1.2.0",
    "author": "Michiel Roos",
    "description": "Easy profiling for XHProf",
    "homepage_url": "http:\/\/www.donationbasedhosting.org\/",
    "manifest_version": 2,
    "minimum_chrome_version": "20",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "Resources\/JavaScript\/Background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "Resources\/JavaScript\/Content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "Resources\/Icons\/Icon128.png",
        "48": "Resources\/Icons\/Icon48.png",
        "16": "Resources\/Icons\/Icon16.png"
    },
    "page_action": {
        "default_icon": {
            "38": "Resources\/Icons\/StopwatchDisabled38.png",
            "19": "Resources\/Icons\/StopwatchDisabled19.png"
        },
        "default_title": "Debugging, profiling & tracing disabled"
    },
    "options_ui": {
        "page": "Resources\/HTML\/Options.html"
    },
    "options_page": "Resources\/HTML\/Options.html"
}