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