Deb.js

The tiniest debugger in the world

What is Deb.js?

Deb.js is a Chrome extension developed by Krasimir Tsonev, and its main feature is "The tiniest debugger in the world".

Extension Screenshots

screenshot

Download Deb.js Extension CRX File

Download Deb.js extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ~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                    

Extension Basic Information

Name Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
Official URL https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Description The tiniest debugger in the world
File Size 12.91 KB
Installation Count 495
Current Version 0.0.5
Last Updated 2014-07-24
Publish Date 2014-07-24
Rating 4.00/5 Total 5 Ratings
Developer Krasimir Tsonev
Payment Type free
Extension Website https://github.com/krasimir/deb.js
Help Page URL https://github.com/krasimir/deb.js/issues
Supported Languages 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"
    ]
}