Backbone Debugger

Developer Tools extension for debugging Backbone.js applications.

Cos'è Backbone Debugger?

Backbone Debugger è un'estensione di Chrome sviluppata da Maluen, e la sua funzione principale è "Developer Tools extension for debugging Backbone.js applications.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Backbone Debugger

Scarica i file di estensione Backbone Debugger in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Backbone Debugger Backbone Debugger
ID bhljhndlimiafopmmhjlgfpnnchjjbhd
URL Ufficiale https://chromewebstore.google.com/detail/backbone-debugger/bhljhndlimiafopmmhjlgfpnnchjjbhd
Descrizione Developer Tools extension for debugging Backbone.js applications.
Dimensione del File 365 KB
Conteggio Installazioni 4,506
Versione Corrente 0.4.1
Ultimo Aggiornamento 2017-12-14
Data di Pubblicazione 2017-12-14
Valutazione 4.53/5 Totale 59 Valutazioni
Sviluppatore Maluen
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Maluen/Backbone-Debugger
URL della Pagina di Aiuto https://github.com/Maluen/Backbone-Debugger/issues
Lingue Supportate 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"
    ]
}