Debeetle

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

什么是Debeetle?

Debeetle是由imagentleman (José Antonio Chio)开发的Chrome扩展程序,该扩展的主要功能是“Save all console.log printed values to variables for further debugging.”。

扩展截图

screenshot
screenshot

下载Debeetle扩展crx文件

下载Debeetle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}