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 jcconnol4 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get image weight insights at the click of a button on the website you're currently on."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Page Image Sizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
    }
}