Pause page

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

Cos'è Pause page?

Pause page è un'estensione di Chrome sviluppata da oliverjash, e la sua funzione principale è "Instantly pause the page when DevTools is open using a keyboard shortcut.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Pause page

Scarica i file di estensione Pause page in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pause page Pause page
ID aephmjhanjgbapahgbbkfhpianhbmeed
URL Ufficiale https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed
Descrizione Instantly pause the page when DevTools is open using a keyboard shortcut.
Dimensione del File 5.95 KB
Conteggio Installazioni 428
Versione Corrente 1.0
Ultimo Aggiornamento 2021-11-23
Data di Pubblicazione 2021-11-23
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore oliverjash
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/OliverJAsh/chrome-extension-pause-page
Lingue Supportate 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"
    }
}