Debeetle

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

Co to jest Debeetle?

Debeetle to rozszerzenie Chrome opracowane przez imagentleman (José Antonio Chio), a jego główną funkcją jest „Save all console.log printed values to variables for further debugging.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Debeetle

Pobierz pliki rozszerzeń Debeetle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Debeetle Debeetle
ID jmapkpjcaaenjhfoebjfnnnmcdlljikj
Oficjalny URL https://chromewebstore.google.com/detail/debeetle/jmapkpjcaaenjhfoebjfnnnmcdlljikj
Opis Save all console.log printed values to variables for further debugging.
Rozmiar pliku 11.5 KB
Liczba instalacji 31
Aktualna Wersja 3
Ostatnia Aktualizacja 2014-05-18
Data Publikacji 2014-05-18
Deweloper imagentleman (José Antonio Chio)
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://imagentleman.github.io
Obsługiwane Języki 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"
        }
    ]
}