Scooby profiler

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

Scooby profiler क्या है?

Scooby profiler Shubham Jain द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scooby profiler lets you debug backend queries for different http requests."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scooby profiler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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."
}