Deb.js

The tiniest debugger in the world

¿Qué es Deb.js?

Deb.js es una extensión de Chrome desarrollada por Krasimir Tsonev, y su función principal es "The tiniest debugger in the world".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Deb.js

Descarga archivos de extensión Deb.js en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ~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                    

Información Básica de la Extensión

Nombre Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
URL Oficial https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Descripción The tiniest debugger in the world
Tamaño del Archivo 12.91 KB
Cantidad de Instalaciones 495
Versión Actual 0.0.5
Última Actualización 2014-07-24
Fecha de Publicación 2014-07-24
Calificación 4.00/5 Total de 5 Calificaciones
Desarrollador Krasimir Tsonev
Tipo de Pago free
Sitio Web de la Extensión https://github.com/krasimir/deb.js
URL de la Página de Ayuda https://github.com/krasimir/deb.js/issues
Idiomas Soportados 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"
    ]
}