Page Image Sizer

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

Cos'è Page Image Sizer?

Page Image Sizer è un'estensione di Chrome sviluppata da jcconnol4, e la sua funzione principale è "Get image weight insights at the click of a button on the website you're currently on.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Page Image Sizer

Scarica i file di estensione Page Image Sizer 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Page Image Sizer Page Image Sizer
ID iiokcphcgmoplnmlbcmglcekflboodkc
URL Ufficiale https://chromewebstore.google.com/detail/page-image-sizer/iiokcphcgmoplnmlbcmglcekflboodkc
Descrizione Get image weight insights at the click of a button on the website you're currently on.
Dimensione del File 182 KB
Conteggio Installazioni 125
Versione Corrente 2.0
Ultimo Aggiornamento 2022-04-23
Data di Pubblicazione 2021-12-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore jcconnol4
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/jcconnol/site-image-sizer-chrome-extension/issues
Lingue Supportate 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"
    }
}