Debeetle

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

O que é Debeetle?

Debeetle é uma extensão do Chrome desenvolvida por imagentleman (José Antonio Chio), e sua principal característica é "Save all console.log printed values to variables for further debugging.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Debeetle

Baixe arquivos de extensão Debeetle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
URL Oficial https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Descrição Save all console.log printed values to variables for further debugging.
Tamanho do Arquivo 11.5 KB
Contagem de Instalações 31
Versão Atual 3
Última Atualização 2014-05-18
Data de Publicação 2014-05-18
Desenvolvedor imagentleman (José Antonio Chio)
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://imagentleman.github.io
Idiomas Suportados 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"
        }
    ]
}