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
官方網址 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"
        }
    ]
}