Mystore Image Extension

In-page statistics about image optimization

Was ist Mystore Image Extension?

Mystore Image Extension ist eine Chrome-Erweiterung, die von ludvigb entwickelt wurde, und ihr Hauptmerkmal ist "In-page statistics about image optimization".

Erweiterungsscreenshots

screenshot

Mystore Image Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mystore Image Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension can be used to check Mystore's image optimization. More specifically it enables you to see what images have been optimized, in what formats, and how much they have been compressed.                    

Grundlegende Informationen zur Erweiterung

Name Mystore Image Extension Mystore Image Extension
ID ejnfhacnkfiagpcgjjikdcbdmdcgecfl
Offizielle URL https://chromewebstore.google.com/detail/mystore-image-extension/ejnfhacnkfiagpcgjjikdcbdmdcgecfl
Beschreibung In-page statistics about image optimization
Dateigröße 292 KB
Installationsanzahl 49
Aktuelle Version 1.7
Letztes Update 2022-01-18
Veröffentlichungsdatum 2021-07-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ludvigb
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mystore Image Extension",
    "version": "1.7",
    "description": "In-page statistics about image optimization",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab",
        "contextMenus",
        "webRequest",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/maxcdn.bootstrapcdn.com https:\/\/cdnjs.cloudflare.com https:\/\/code.jquery.com; object-src 'self'",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icons\/logo.png"
        }
    },
    "background": {
        "scripts": [
            "js\/lodash.js",
            "js\/browser_polyfill.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "icons\/logo.png",
        "48": "icons\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/lodash.js",
                "js\/find_domain_name.js",
                "js\/browser_polyfill.js",
                "content-js\/state.js"
            ],
            "css": [
                "css\/content_special.css"
            ]
        }
    ]
}