Deb.js

The tiniest debugger in the world

Cos'è Deb.js?

Deb.js è un'estensione di Chrome sviluppata da Krasimir Tsonev, e la sua funzione principale è "The tiniest debugger in the world".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Deb.js

Scarica i file di estensione Deb.js in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ~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                    

Informazioni di Base sull'Estensione

Nome Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
URL Ufficiale https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Descrizione The tiniest debugger in the world
Dimensione del File 12.91 KB
Conteggio Installazioni 495
Versione Corrente 0.0.5
Ultimo Aggiornamento 2014-07-24
Data di Pubblicazione 2014-07-24
Valutazione 4.00/5 Totale 5 Valutazioni
Sviluppatore Krasimir Tsonev
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/krasimir/deb.js
URL della Pagina di Aiuto https://github.com/krasimir/deb.js/issues
Lingue Supportate 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"
    ]
}