Backbone Debugger

Developer Tools extension for debugging Backbone.js applications.

Backbone Debuggerとは何ですか?

Backbone DebuggerはMaluenによって開発されたChromeの拡張機能で、その主な機能は「Developer Tools extension for debugging Backbone.js applications.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Backbone Debugger拡張機能のCRXファイルをダウンロード

Backbone Debugger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds a panel under the Chrome Developer Tools that displays in real-time all your application views, models, collections and routers.

Data displayed includes:
- Views: rendering status, html element, associated model and/or collection, handled page events, events triggered
- Models: last sync status, attributes, id, cid, url, associated collection, events triggered, sync actions
- Collections: last sync status, models, url, events triggered, sync actions
- Routers: events triggered (include routes)

Extends the sidebar of the developer tools "Elements" panel to display the Backbone View of the inspected html element.

========================

See the full list of changes and previous releases on https://github.com/Maluen/Backbone-Debugger/releases                    

拡張機能の基本情報

名前 Backbone Debugger Backbone Debugger
ID bhljhndlimiafopmmhjlgfpnnchjjbhd
公式URL https://chromewebstore.google.com/detail/backbone-debugger/bhljhndlimiafopmmhjlgfpnnchjjbhd
説明 Developer Tools extension for debugging Backbone.js applications.
ファイルサイズ 365 KB
インストール数 4,506
現在のバージョン 0.4.1
最終更新日 2017-12-14
公開日 2017-12-14
評価 4.53/5 合計 59 レビュー
開発者 Maluen
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Maluen/Backbone-Debugger
ヘルプページのURL https://github.com/Maluen/Backbone-Debugger/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Backbone Debugger",
    "version": "0.4.1",
    "description": "Developer Tools extension for debugging Backbone.js applications.",
    "author": "Manuel Dell'Elce and contributors",
    "minimum_chrome_version": "22.0",
    "icons": {
        "16": "img\/extension16.png",
        "48": "img\/extension48.png",
        "128": "img\/extension128.png"
    },
    "manifest_version": 2,
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "js\/lib\/*",
        "js\/backboneAgent\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs"
    ]
}