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
官方網址 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
電子郵箱 [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"
    }
}