Scooby profiler

Scooby profiler lets you debug backend queries for different http requests.

Was ist Scooby profiler?

Scooby profiler ist eine Chrome-Erweiterung, die von Shubham Jain entwickelt wurde, und ihr Hauptmerkmal ist "Scooby profiler lets you debug backend queries for different http requests.".

Erweiterungsscreenshots

screenshot

Scooby profiler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scooby profiler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Scooby profiler is a chrome extension to debug backend queries for different HTTP requests. This lets you profile your views too. You need to install django-scooby-profiler package to make it work with Django.                    

Grundlegende Informationen zur Erweiterung

Name Scooby profiler Scooby profiler
ID kicgfdanpohconjegfkojbpceodecjad
Offizielle URL https://chromewebstore.google.com/detail/scooby-profiler/kicgfdanpohconjegfkojbpceodecjad
Beschreibung Scooby profiler lets you debug backend queries for different http requests.
Dateigröße 210 KB
Installationsanzahl 44
Aktuelle Version 1.0.0
Letztes Update 2018-09-10
Veröffentlichungsdatum 2018-09-10
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Shubham Jain
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "devtools_page": "html\/devtools.html",
    "permissions": [
        "",
        "cookies",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "js\/*",
        "html\/*",
        "css\/*",
        "images\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "name": "Scooby profiler",
    "version": "1.0.0",
    "description": "Scooby profiler lets you debug backend queries for different http requests."
}