Page Image Sizer

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

Co je Page Image Sizer?

Page Image Sizer je rozšíření Chrome vyvinuté jcconnol4, a jeho hlavní funkcí je „Get image weight insights at the click of a button on the website you're currently on.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Page Image Sizer

Stáhněte si soubory rozšíření Page Image Sizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Page Image Sizer Page Image Sizer
ID iiokcphcgmoplnmlbcmglcekflboodkc
Oficiální URL https://chromewebstore.google.com/detail/page-image-sizer/iiokcphcgmoplnmlbcmglcekflboodkc
Popis Get image weight insights at the click of a button on the website you're currently on.
Velikost souboru 182 KB
Počet instalací 125
Aktuální Verze 2.0
Poslední Aktualizace 2022-04-23
Datum Vydání 2021-12-27
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář jcconnol4
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/jcconnol/site-image-sizer-chrome-extension/issues
Podporované Jazyky 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"
    }
}