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
公式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"
    ]
}