Scooby profiler

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

Co je Scooby profiler?

Scooby profiler je rozšíření Chrome vyvinuté Shubham Jain, a jeho hlavní funkcí je „Scooby profiler lets you debug backend queries for different http requests.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Scooby profiler

Stáhněte si soubory rozšíření Scooby profiler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Scooby profiler Scooby profiler
ID kicgfdanpohconjegfkojbpceodecjad
Oficiální URL https://chromewebstore.google.com/detail/scooby-profiler/kicgfdanpohconjegfkojbpceodecjad
Popis Scooby profiler lets you debug backend queries for different http requests.
Velikost souboru 210 KB
Počet instalací 44
Aktuální Verze 1.0.0
Poslední Aktualizace 2018-09-10
Datum Vydání 2018-09-10
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Shubham Jain
Typ Platby free
Podporované Jazyky 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."
}