Deb.js

The tiniest debugger in the world

Что такое Deb.js?

Deb.js - это расширение Chrome, разработанное Krasimir Tsonev, и его основная функция - "The tiniest debugger in the world".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Deb.js

Скачайте файлы расширений Deb.js в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        ~2K minimalistic JavaScript library for debugging in the browser.

Install the extension and add "debjs" somewhere in the URL. Thats it! Now you are able to add ".deb" or ".debc" to your function definitions. For example:

var calculateSomething = function(cb) {
    // ...
}.deb();

The official repository of the project is available here https://github.com/krasimir/deb.js                    

Основная информация о расширении

Название Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
Официальный URL https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Описание The tiniest debugger in the world
Размер файла 12.91 KB
Количество установок 495
Текущая Версия 0.0.5
Последнее Обновление 2014-07-24
Дата публикации 2014-07-24
Рейтинг 4.00/5 Всего 5 оценок
Разработчик Krasimir Tsonev
Тип оплаты free
Официальный сайт расширения https://github.com/krasimir/deb.js
URL страницы помощи https://github.com/krasimir/deb.js/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deb.js",
    "description": "The tiniest debugger in the world",
    "version": "0.0.5",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Deb.js"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/deb.min.js"
    ]
}