Page Image Sizer

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

Что такое Page Image Sizer?

Page Image Sizer - это расширение Chrome, разработанное jcconnol4, и его основная функция - "Get image weight insights at the click of a button on the website you're currently on.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Page Image Sizer

Скачайте файлы расширений Page Image Sizer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Page Image Sizer Page Image Sizer
ID iiokcphcgmoplnmlbcmglcekflboodkc
Официальный URL https://chromewebstore.google.com/detail/page-image-sizer/iiokcphcgmoplnmlbcmglcekflboodkc
Описание Get image weight insights at the click of a button on the website you're currently on.
Размер файла 182 KB
Количество установок 125
Текущая Версия 2.0
Последнее Обновление 2022-04-23
Дата публикации 2021-12-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик jcconnol4
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/jcconnol/site-image-sizer-chrome-extension/issues
Поддерживаемые языки 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"
    }
}