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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}