Scooby profiler

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

Scooby profiler là gì?

Scooby profiler là một tiện ích mở rộng Chrome được phát triển bởi Shubham Jain, và tính năng chính của nó là "Scooby profiler lets you debug backend queries for different http requests.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scooby profiler

Tải xuống các tệp mở rộng Scooby profiler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scooby profiler Scooby profiler
ID kicgfdanpohconjegfkojbpceodecjad
URL Chính Thức https://chromewebstore.google.com/detail/scooby-profiler/kicgfdanpohconjegfkojbpceodecjad
Mô tả Scooby profiler lets you debug backend queries for different http requests.
Kích Thước Tệp 210 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-09-10
Ngày Phát Hành 2018-09-10
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Shubham Jain
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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."
}