Deb.js

The tiniest debugger in the world

什麼是Deb.js?

Deb.js是由Krasimir Tsonev開發的Chrome擴展程式,該擴展的主要功能是“The tiniest debugger in the world”。

擴展截圖

screenshot

下載Deb.js擴展crx文件

下載Deb.js擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ~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
官方網址 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"
    ]
}