Mystore Image Extension

In-page statistics about image optimization

What is Mystore Image Extension?

Mystore Image Extension is a Chrome extension developed by ludvigb, and its main feature is "In-page statistics about image optimization".

Extension Screenshots

screenshot

Download Mystore Image Extension Extension CRX File

Download Mystore Image Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Mystore Image Extension Mystore Image Extension
ID ejnfhacnkfiagpcgjjikdcbdmdcgecfl
Official URL https://chromewebstore.google.com/detail/mystore-image-extension/ejnfhacnkfiagpcgjjikdcbdmdcgecfl
Description In-page statistics about image optimization
File Size 292 KB
Installation Count 49
Current Version 1.7
Last Updated 2022-01-18
Publish Date 2021-07-09
Rating 5.00/5 Total 1 Ratings
Developer ludvigb
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}