Debeetle

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

Cos'è Debeetle?

Debeetle è un'estensione di Chrome sviluppata da imagentleman (José Antonio Chio), e la sua funzione principale è "Save all console.log printed values to variables for further debugging.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Debeetle

Scarica i file di estensione Debeetle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
URL Ufficiale https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Descrizione Save all console.log printed values to variables for further debugging.
Dimensione del File 11.5 KB
Conteggio Installazioni 31
Versione Corrente 3
Ultimo Aggiornamento 2014-05-18
Data di Pubblicazione 2014-05-18
Sviluppatore imagentleman (José Antonio Chio)
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://imagentleman.github.io
Lingue Supportate 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"
        }
    ]
}