Deb.js

The tiniest debugger in the world

Co je Deb.js?

Deb.js je rozšíření Chrome vyvinuté Krasimir Tsonev, a jeho hlavní funkcí je „The tiniest debugger in the world“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Deb.js

Stáhněte si soubory rozšíření Deb.js ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        ~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                    

Základní Informace o Rozšíření

Název Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
Oficiální URL https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Popis The tiniest debugger in the world
Velikost souboru 12.91 KB
Počet instalací 495
Aktuální Verze 0.0.5
Poslední Aktualizace 2014-07-24
Datum Vydání 2014-07-24
Hodnocení 4.00/5 Celkem 5 Hodnocení
Vývojář Krasimir Tsonev
Typ Platby free
Webové stránky Rozšíření https://github.com/krasimir/deb.js
URL Stránky Nápovědy https://github.com/krasimir/deb.js/issues
Podporované Jazyky 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"
    ]
}