Debeetle

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

Apa itu Debeetle?

Debeetle adalah ekstensi Chrome yang dikembangkan oleh imagentleman (José Antonio Chio), dan fitur utamanya adalah "Save all console.log printed values to variables for further debugging.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Debeetle

Unduh file ekstensi Debeetle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
URL Resmi https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Deskripsi Save all console.log printed values to variables for further debugging.
Ukuran File 11.5 KB
Jumlah Instalasi 31
Versi Saat Ini 3
Terakhir Diperbarui 2014-05-18
Tanggal Publikasi 2014-05-18
Pengembang imagentleman (José Antonio Chio)
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://imagentleman.github.io
Bahasa yang Didukung 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"
        }
    ]
}