Debeetle

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

Wat is Debeetle?

Debeetle is een Chrome-extensie ontwikkeld door imagentleman (José Antonio Chio), en de belangrijkste functie is "Save all console.log printed values to variables for further debugging.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Debeetle

Download Debeetle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
Officiële URL https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Beschrijving Save all console.log printed values to variables for further debugging.
Bestandsgrootte 11.5 KB
Aantal Installaties 31
Huidige Versie 3
Laatst Bijgewerkt 2014-05-18
Publicatiedatum 2014-05-18
Ontwikkelaar imagentleman (José Antonio Chio)
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://imagentleman.github.io
Ondersteunde Talen 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"
        }
    ]
}