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