Debeetle

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

Vad är Debeetle?

Debeetle är en Chrome-tillägg utvecklad av imagentleman (José Antonio Chio), och dess huvudfunktion är "Save all console.log printed values to variables for further debugging.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Debeetle-förlängningens CRX-fil

Ladda ner Debeetle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
Officiell webbadress https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Beskrivning Save all console.log printed values to variables for further debugging.
Filstorlek 11.5 KB
Antal Installationer 31
Aktuell Version 3
Senast Uppdaterad 2014-05-18
Publiceringsdatum 2014-05-18
Utvecklare imagentleman (José Antonio Chio)
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://imagentleman.github.io
Stödda Språk 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"
        }
    ]
}