Deb.js

The tiniest debugger in the world

Co to jest Deb.js?

Deb.js to rozszerzenie Chrome opracowane przez Krasimir Tsonev, a jego główną funkcją jest „The tiniest debugger in the world”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Deb.js

Pobierz pliki rozszerzeń Deb.js w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        ~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                    

Podstawowe informacje o rozszerzeniu

Nazwa Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
Oficjalny URL https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Opis The tiniest debugger in the world
Rozmiar pliku 12.91 KB
Liczba instalacji 495
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2014-07-24
Data Publikacji 2014-07-24
Ocena 4.00/5 Łącznie 5 Oceny
Deweloper Krasimir Tsonev
Typ Płatności free
Strona Rozszerzenia https://github.com/krasimir/deb.js
Adres URL Strony Pomocy https://github.com/krasimir/deb.js/issues
Obsługiwane Języki 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"
    ]
}