Pause page

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

Pause pageคืออะไร?

Pause page เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oliverjash และคุณลักษณะหลักของมันคือ "Instantly pause the page when DevTools is open using a keyboard shortcut."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pause page

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}