Deb.js

The tiniest debugger in the world

Vad är Deb.js?

Deb.js är en Chrome-tillägg utvecklad av Krasimir Tsonev, och dess huvudfunktion är "The tiniest debugger in the world".

Tilläggsskärmbilder

screenshot

Ladda ner Deb.js-förlängningens CRX-fil

Ladda ner Deb.js-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        ~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                    

Grundläggande Information om Tillägg

Namn Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
Officiell webbadress https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Beskrivning The tiniest debugger in the world
Filstorlek 12.91 KB
Antal Installationer 495
Aktuell Version 0.0.5
Senast Uppdaterad 2014-07-24
Publiceringsdatum 2014-07-24
Betyg 4.00/5 Totalt 5 Betyg
Utvecklare Krasimir Tsonev
Betalningssätt free
Tilläggswebbplats https://github.com/krasimir/deb.js
Hjälpsida URL https://github.com/krasimir/deb.js/issues
Stödda Språk 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"
    ]
}