Pause page
Instantly pause the page when DevTools is open using a keyboard shortcut.
What is Pause page?
Pause page is a Chrome extension developed by oliverjash, and its main feature is "Instantly pause the page when DevTools is open using a keyboard shortcut.".
Extension Screenshots
Download Pause page Extension CRX File
Download Pause page extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Pause page |
ID | aephmjhanjgbapahgbbkfhpianhbmeed |
Official URL | https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed |
Description | Instantly pause the page when DevTools is open using a keyboard shortcut. |
File Size | 5.95 KB |
Installation Count | 428 |
Current Version | 1.0 |
Last Updated | 2021-11-23 |
Publish Date | 2021-11-23 |
Rating | 5.00/5 Total 1 Ratings |
Developer | oliverjash |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/OliverJAsh/chrome-extension-pause-page |
Supported Languages | 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" } } |