Debeetle

Save all console.log printed values to variables for further debugging.

Debeetle क्या है?

Debeetle imagentleman (José Antonio Chio) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save all console.log printed values to variables for further debugging."।

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

screenshot
screenshot

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

crx प्रारूप में Debeetle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Automatically save all console.log printed values to variables for further debugging.

Usage:
The history will be saved in the variable $d, accessible from the console on the devtools.

$d.last gets the last console.log printed statement.
$d.all is an array with all the console.log prints.
$d.clear() empties the array.
Use $d to print and inspect the entire object or get quick access.                    

एक्सटेंशन की मूल जानकारी

नाम Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
आधिकारिक URL https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
विवरण Save all console.log printed values to variables for further debugging.
फ़ाइल का आकार 11.5 KB
स्थापना संख्या 31
वर्तमान संस्करण 3
अंतिम अपडेट 2014-05-18
प्रकाशन तिथि 2014-05-18
डेवलपर imagentleman (José Antonio Chio)
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://imagentleman.github.io
समर्थित भाषाएँ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Debeetle",
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "version": "3",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "16": "16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ]
}