Pause page

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

Qu'est-ce que Pause page ?

Pause page est une extension Chrome développée par oliverjash, et sa fonction principale est "Instantly pause the page when DevTools is open using a keyboard shortcut.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Pause page

Téléchargez les fichiers d'extension Pause page au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Pause page Pause page
ID aephmjhanjgbapahgbbkfhpianhbmeed
URL Officiel https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed
Description Instantly pause the page when DevTools is open using a keyboard shortcut.
Taille du Fichier 5.95 KB
Nombre d'Installations 428
Version Actuelle 1.0
Dernière Mise à Jour 2021-11-23
Date de Publication 2021-11-23
Évaluation 5.00/5 Total 1 Évaluations
Développeur oliverjash
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/OliverJAsh/chrome-extension-pause-page
Langues Prises en Charge 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"
    }
}