Pause page

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

Pause page là gì?

Pause page là một tiện ích mở rộng Chrome được phát triển bởi oliverjash, và tính năng chính của nó là "Instantly pause the page when DevTools is open using a keyboard shortcut.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Pause page

Tải xuống các tệp mở rộng Pause page dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pause page Pause page
ID aephmjhanjgbapahgbbkfhpianhbmeed
URL Chính Thức https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed
Mô tả Instantly pause the page when DevTools is open using a keyboard shortcut.
Kích Thước Tệp 5.95 KB
Số Lần Cài Đặt 428
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-11-23
Ngày Phát Hành 2021-11-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển oliverjash
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/OliverJAsh/chrome-extension-pause-page
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}