Debugger Shortcut

Stop javascript execution by pressing a keyboard shortcut.

Was ist Debugger Shortcut?

Debugger Shortcut ist eine Chrome-Erweiterung, die von http://vadim.sikora.name entwickelt wurde, und ihr Hauptmerkmal ist "Stop javascript execution by pressing a keyboard shortcut.".

Debugger Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Debugger Shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Debugger Shortcut Debugger Shortcut
ID gjaeepjbfieiimehgjfpmaffegliiaea
Offizielle URL https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea
Beschreibung Stop javascript execution by pressing a keyboard shortcut.
Dateigröße 8.93 KB
Installationsanzahl 29
Aktuelle Version 0.2.5
Letztes Update 2017-06-24
Veröffentlichungsdatum 2017-06-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://vadim.sikora.name
Zahlungsart free
Erweiterungswebsite https://github.com/vxsx/debugger-shortcut-extension
Hilfeseite URL https://github.com/vxsx/debugger-shortcut-extension/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}