Deb.js

The tiniest debugger in the world

ما هو Deb.js؟

Deb.js هو إضافة Chrome تم تطويرها بواسطة Krasimir Tsonev، والميزة الرئيسية لها هي "The tiniest debugger in the world".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Deb.js

قم بتنزيل ملفات الامتداد Deb.js بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}