Pause page
Instantly pause the page when DevTools is open using a keyboard shortcut.
Co to jest Pause page?
Pause page to rozszerzenie Chrome opracowane przez oliverjash, a jego główną funkcją jest „Instantly pause the page when DevTools is open using a keyboard shortcut.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pause page
Pobierz pliki rozszerzeń Pause page w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Pause page |
ID | aephmjhanjgbapahgbbkfhpianhbmeed |
Oficjalny URL | https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed |
Opis | Instantly pause the page when DevTools is open using a keyboard shortcut. |
Rozmiar pliku | 5.95 KB |
Liczba instalacji | 428 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-11-23 |
Data Publikacji | 2021-11-23 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | oliverjash |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/OliverJAsh/chrome-extension-pause-page |
Obsługiwane Języki | 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" } } |