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"
    }
}