Pause page
Instantly pause the page when DevTools is open using a keyboard shortcut.
Wat is Pause page?
Pause page is een Chrome-extensie ontwikkeld door oliverjash, en de belangrijkste functie is "Instantly pause the page when DevTools is open using a keyboard shortcut.".
Extensie Screenshots
Download het CRX-bestand van de extensie Pause page
Download Pause page-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Pause page |
ID | aephmjhanjgbapahgbbkfhpianhbmeed |
Officiële URL | https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed |
Beschrijving | Instantly pause the page when DevTools is open using a keyboard shortcut. |
Bestandsgrootte | 5.95 KB |
Aantal Installaties | 428 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2021-11-23 |
Publicatiedatum | 2021-11-23 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | oliverjash |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/OliverJAsh/chrome-extension-pause-page |
Ondersteunde Talen | 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" } } |