Deb.js

The tiniest debugger in the world

Deb.js là gì?

Deb.js là một tiện ích mở rộng Chrome được phát triển bởi Krasimir Tsonev, và tính năng chính của nó là "The tiniest debugger in the world".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Deb.js

Tải xuống các tệp mở rộng Deb.js dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ~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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Deb.js Deb.js
ID egmeoknjmgikkkcdicmajkbkmkcmbiah
URL Chính Thức https://chromewebstore.google.com/detail/debjs/egmeoknjmgikkkcdicmajkbkmkcmbiah
Mô tả The tiniest debugger in the world
Kích Thước Tệp 12.91 KB
Số Lần Cài Đặt 495
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2014-07-24
Ngày Phát Hành 2014-07-24
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Krasimir Tsonev
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/krasimir/deb.js
URL Trang Trợ Giúp https://github.com/krasimir/deb.js/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}