Scooby profiler

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

Co to jest Scooby profiler?

Scooby profiler to rozszerzenie Chrome opracowane przez Shubham Jain, a jego główną funkcją jest „Scooby profiler lets you debug backend queries for different http requests.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Scooby profiler

Pobierz pliki rozszerzeń Scooby profiler 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Scooby profiler Scooby profiler
ID kicgfdanpohconjegfkojbpceodecjad
Oficjalny URL https://chromewebstore.google.com/detail/scooby-profiler/kicgfdanpohconjegfkojbpceodecjad
Opis Scooby profiler lets you debug backend queries for different http requests.
Rozmiar pliku 210 KB
Liczba instalacji 44
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-09-10
Data Publikacji 2018-09-10
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Shubham Jain
Typ Płatności free
Obsługiwane Języki 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."
}