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