Scooby profiler

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

Scooby profiler란 무엇입니까?

Scooby profiler은(는) Shubham Jain에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scooby profiler lets you debug backend queries for different http requests."입니다.

확장 프로그램 스크린샷

screenshot

Scooby profiler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Scooby profiler Scooby profiler
ID kicgfdanpohconjegfkojbpceodecjad
공식 URL https://chromewebstore.google.com/detail/scooby-profiler/kicgfdanpohconjegfkojbpceodecjad
설명 Scooby profiler lets you debug backend queries for different http requests.
파일 크기 210 KB
설치 횟수 44
현재 버전 1.0.0
최근 업데이트 2018-09-10
출시 날짜 2018-09-10
평점 5.00/5 총 3 개의 평점
개발자 Shubham Jain
결제 유형 free
지원되는 언어 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."
}