Pause page

Instantly pause the page when DevTools is open using a keyboard shortcut.

Pause pageとは何ですか?

Pause pageはoliverjashによって開発されたChromeの拡張機能で、その主な機能は「Instantly pause the page when DevTools is open using a keyboard shortcut.」です。

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

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

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

拡張機能の使用方法

                        Instantly pause the page when DevTools is open using a keyboard shortcut. This makes it easy to inspect an element at a specific point in time. For example, for elements like popovers or dropdowns, visibility is often controlled using JavaScript events like `mousemove`/`mouseleave`, so when we try to inspect these elements, they disappear from the page because the cursor moved or keyboard focus changed. If we pause the page once the element is visible then it won't disappear when we move the cursor or change keyboard focus, thereby allowing us to inspect the element and its styles.                    

拡張機能の基本情報

名前 Pause page Pause page
ID aephmjhanjgbapahgbbkfhpianhbmeed
公式URL https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed
説明 Instantly pause the page when DevTools is open using a keyboard shortcut.
ファイルサイズ 5.95 KB
インストール数 428
現在のバージョン 1.0
最終更新日 2021-11-23
公開日 2021-11-23
評価 5.00/5 合計 1 レビュー
開発者 oliverjash
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/OliverJAsh/chrome-extension-pause-page
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pause page",
    "description": "Instantly pause the page when DevTools is open using a keyboard shortcut.",
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 2,
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Pause"
        }
    },
    "icons": {
        "128": "icon.png"
    }
}