Image Size Info

Inserts option in the browser's image context menu to view image width, height and file size.

Τι είναι το Image Size Info;

Το Image Size Info είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://igorware.com, και η κύρια λειτουργία του είναι "Inserts option in the browser's image context menu to view image width, height and file size.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Image Size Info

Λήψη αρχείων επέκτασης Image Size Info σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Works for images and videos (webm, gifv).

NOTES:
- If extension popup cannot be closed right after you install the extension, you need to restart your browser.

- Some information like file size and date are returned from the server, this information depends on the server setup and can sometimes be wrong, which is especially true for the date field.

- Does not work with CSS background images due to browser API limitations.

- Does not work on Chrome web store, this is a Chrome security measure.


:: Minimum Requirements
  Requires at least Chrome v100.

:: Contact & Report issues:
  https://www.igorware.com/contact

---------------------------------------------------------

:: Changelog

v3.0.0
 - Converted extension to manifest v3

v2.2.9
 - fixed issue with display on certain websites

v2.2.8
 - updated Spanish translation
 - fixed label widths

v2.2.7
 - added translation to Spanish language - translated by José Zeida

v2.2.6
 - updated error logger

v2.2.5
 - minimum Chrome version is now v54
 
v2.2.2
 - improved error handling

v2.2.1
 - improved error handling

v2.2.0
 - improved extension behaviour after extension install/update
 - updated Facebook and Twitter icons

v2.1.2
 - better fix for issue with "cannot create item with duplicate id"

v2.1.1
 - trying to fix an issue that some users are getting about duplicate ID for context menu

v2.1.0
 - background script is no longer persistent which means extension is loaded only when needed
 - removed Google+ link

v2.0.3
 - updated Finnish translation

v2.0.2
 - extension translated to Finnish by Sami Kuusisto (www.6sto.com)

v2.0.1
 - updated URLs
 - updated error logger script

v2.0.0
 - added ability to see size info for videos (webm, gifv)
 - fixed an issue with extension not working for images that are located inside iframes
 - enabled chrome style for options

==> Full change-log available on the website                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Image Size Info Image Size Info
ID oihdhfbfoagfkpcncinlbhfdgpegcigf
Επίσημο URL https://chromewebstore.google.com/detail/image-size-info/oihdhfbfoagfkpcncinlbhfdgpegcigf
Περιγραφή Inserts option in the browser's image context menu to view image width, height and file size.
Μέγεθος Αρχείου 35.11 KB
Αριθμός Εγκαταστάσεων 94,685
Τρέχουσα Έκδοση 3.0.0
Τελευταία Ενημέρωση 2024-02-17
Ημερομηνία Δημοσίευσης 2020-06-07
Αξιολόγηση 4.36/5 Συνολικά 187 Αξιολογήσεις
Προγραμματιστής https://igorware.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.igorware.com/extensions/image-size-info
Διεύθυνση URL της Σελίδας Βοήθειας https://www.igorware.com/contact
URL της Σελίδας Πολιτικής Απορρήτου https://www.igorware.com/extensions/privacy-policy
Υποστηριζόμενες Γλώσσες en,es,fi,sv,sr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "100",
    "offline_enabled": true,
    "default_locale": "en",
    "name": "__MSG_chrome_extension_name__",
    "version": "3.0.0",
    "description": "__MSG_chrome_extension_description__",
    "homepage_url": "https:\/\/www.igorware.com\/extensions\/image-size-info?referrer-ver=chrome-ext-manager",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/icon_016.png",
        "32": "images\/icon_032.png",
        "48": "images\/icon_048.png",
        "64": "images\/icon_064.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "includes\/content.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src https:\/\/api.igorware.com; font-src 'none'; img-src 'self'; object-src 'none'; style-src 'unsafe-inline'",
        "sandbox": "sandbox; default-src 'none';"
    },
    "permissions": [
        "contextMenus",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}