Scooby profiler

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

ما هو Scooby profiler؟

Scooby profiler هو إضافة Chrome تم تطويرها بواسطة Shubham Jain، والميزة الرئيسية لها هي "Scooby profiler lets you debug backend queries for different http requests.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Scooby profiler

قم بتنزيل ملفات الامتداد Scooby profiler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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."
}