Pause Debugger

Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long.

Pause Debuggerとは何ですか?

Pause DebuggerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long.」です。

拡張機能のスクリーンショット

screenshot

Pause Debugger拡張機能のCRXファイルをダウンロード

Pause Debugger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        So sometime one needs to inspect elements which  don't stay around long or require the user to keep focus on them. Such as drop down menus and autocompletes. 

This extension allows you to pause the debugger with a timeout as well as a keyboard shortcut. Essentially replacing typing in the console things like setTimeout(function(){ debugger; }, 3000);

It assumes that the Developer Tools are open already otherwise it won't work. Shortcut is Ctrl+Shift+Down (PC) or  Command+Shift+Down (Mac).

Source code is here:
https://github.com/turigeza/freezepage-chrome                    

拡張機能の基本情報

名前 Pause Debugger Pause Debugger
ID bepojlpejmdpcifcmekjapkaapenpncf
公式URL https://chromewebstore.google.com/detail/pause-debugger/bepojlpejmdpcifcmekjapkaapenpncf
説明 Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long.
ファイルサイズ 14.23 KB
インストール数 327
現在のバージョン 1.0
最終更新日 2019-10-13
公開日 2019-10-09
評価 5.00/5 合計 3 レビュー
開発者 Unknown
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pause Debugger",
    "version": "1.0",
    "description": "Freeze the page after x seconds so one can inspect it in the developper tools. Useful for elements which don't stay around for long.",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Pause Debugger",
        "default_icon": {
            "16": "images\/pause_circle_outline-16.png",
            "32": "images\/pause_circle_outline-32.png",
            "48": "images\/pause_circle_outline-48.png",
            "128": "images\/pause_circle_outline-128.png"
        }
    },
    "commands": {
        "freeze-page": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down",
                "mac": "Command+Shift+Down"
            },
            "description": "Start debugger"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/pause_circle_outline-16.png",
        "32": "images\/pause_circle_outline-32.png",
        "48": "images\/pause_circle_outline-48.png",
        "128": "images\/pause_circle_outline-128.png"
    }
}