Deb.js

The tiniest debugger in the world

Deb.js क्या है?

Deb.js Krasimir Tsonev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The tiniest debugger in the world"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Deb.js एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ~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                    

एक्सटेंशन की मूल जानकारी

नाम Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
आधिकारिक URL https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
विवरण The tiniest debugger in the world
फ़ाइल का आकार 12.91 KB
स्थापना संख्या 495
वर्तमान संस्करण 0.0.5
अंतिम अपडेट 2014-07-24
प्रकाशन तिथि 2014-07-24
रेटिंग 4.00/5 कुल 5 रेटिंग्स
डेवलपर Krasimir Tsonev
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/krasimir/deb.js
सहायता पृष्ठ URL https://github.com/krasimir/deb.js/issues
समर्थित भाषाएँ 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"
    ]
}