Page Image Sizer

Get image weight insights at the click of a button on the website you're currently on.

Qu'est-ce que Page Image Sizer ?

Page Image Sizer est une extension Chrome développée par jcconnol4, et sa fonction principale est "Get image weight insights at the click of a button on the website you're currently on.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Page Image Sizer

Téléchargez les fichiers d'extension Page Image Sizer 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

                        Web page weighing your users down? Save time looking through the network tab and and refreshing the page trying to find the weights of all the images on your page. 

Now at the click of a button, get image sizes that might be missed by looking through the Chrome network tool.

Help find what images might be hurting core web vitals on a page and help lower overall page weight, helping you climb the SEO ladder.                    

Informations de Base sur l'Extension

Nom Page Image Sizer Page Image Sizer
ID iiokcphcgmoplnmlbcmglcekflboodkc
URL Officiel https://chromewebstore.google.com/detail/page-image-sizer/iiokcphcgmoplnmlbcmglcekflboodkc
Description Get image weight insights at the click of a button on the website you're currently on.
Taille du Fichier 182 KB
Nombre d'Installations 125
Version Actuelle 2.0
Dernière Mise à Jour 2022-04-23
Date de Publication 2021-12-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur jcconnol4
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/jcconnol/site-image-sizer-chrome-extension/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page Image Sizer",
    "description": "Get image weight insights at the click of a button on the website you're currently on.",
    "version": "2.0",
    "author": "John Connolly",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}