Debugger Shortcut

Stop javascript execution by pressing a keyboard shortcut.

Cos'è Debugger Shortcut?

Debugger Shortcut è un'estensione di Chrome sviluppata da http://vadim.sikora.name, e la sua funzione principale è "Stop javascript execution by pressing a keyboard shortcut.".

Scarica il file CRX dell'estensione Debugger Shortcut

Scarica i file di estensione Debugger Shortcut 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

                        Sometimes you may find yourself in a situation when you want to debug specific dom on the page, but cannot catch the right moment to inspect it. With this extension you can specify a shortcut to quickly enable debugger while it's still on the page.

Works for iframes and nested iframes as well.

Screenshots: http://vadim.sikora.name/debugger-shortcut-extension/                    

Informazioni di Base sull'Estensione

Nome Debugger Shortcut Debugger Shortcut
ID gjaeepjbfieiimehgjfpmaffegliiaea
URL Ufficiale https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea
Descrizione Stop javascript execution by pressing a keyboard shortcut.
Dimensione del File 8.93 KB
Conteggio Installazioni 29
Versione Corrente 0.2.5
Ultimo Aggiornamento 2017-06-24
Data di Pubblicazione 2017-06-24
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore http://vadim.sikora.name
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/vxsx/debugger-shortcut-extension
URL della Pagina di Aiuto https://github.com/vxsx/debugger-shortcut-extension/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Debugger Shortcut",
    "version": "0.2.5",
    "manifest_version": 2,
    "description": "Stop javascript execution by pressing a keyboard shortcut.",
    "homepage_url": "http:\/\/github.com\/vxsx\/debugger-shortcut-extension",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon38.png",
        "default_title": "Options for Debugger Shortcut.",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}