Debeetle

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

Debeetleคืออะไร?

Debeetle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย imagentleman (José Antonio Chio) และคุณลักษณะหลักของมันคือ "Save all console.log printed values to variables for further debugging."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Debeetle

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}