Debugger Shortcut

Stop javascript execution by pressing a keyboard shortcut.

什麼是Debugger Shortcut?

Debugger Shortcut是由http://vadim.sikora.name開發的Chrome擴展程式,該擴展的主要功能是“Stop javascript execution by pressing a keyboard shortcut.”。

下載Debugger Shortcut擴展crx文件

下載Debugger Shortcut擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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/                    

擴展基本資訊

名稱 Debugger Shortcut Debugger Shortcut
ID gjaeepjbfieiimehgjfpmaffegliiaea
官方網址 https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea
簡介 Stop javascript execution by pressing a keyboard shortcut.
檔案大小 8.93 KB
安裝次數 29
目前版本 0.2.5
更新時間 2017-06-24
上架時間 2017-06-24
評分 5.00/5 共 2 次評分
開發者 http://vadim.sikora.name
付費類型 free
擴展官網 https://github.com/vxsx/debugger-shortcut-extension
說明頁面URL https://github.com/vxsx/debugger-shortcut-extension/issues
支援的語言 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"
            ]
        }
    ]
}