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ファイルをダウンロード

Scooby profiler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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."
}