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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}