Debeetle

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

What is Debeetle?

Debeetle is a Chrome extension developed by imagentleman (José Antonio Chio), and its main feature is "Save all console.log printed values to variables for further debugging.".

Extension Screenshots

screenshot
screenshot

Download Debeetle Extension CRX File

Download Debeetle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
Official URL https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Description Save all console.log printed values to variables for further debugging.
File Size 11.5 KB
Installation Count 31
Current Version 3
Last Updated 2014-05-18
Publish Date 2014-05-18
Developer imagentleman (José Antonio Chio)
Email [email protected]
Payment Type free
Extension Website http://imagentleman.github.io
Supported Languages 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"
        }
    ]
}