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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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