Mystore Image Extension

In-page statistics about image optimization

什麼是Mystore Image Extension?

Mystore Image Extension是由ludvigb開發的Chrome擴展程式,該擴展的主要功能是“In-page statistics about image optimization”。

擴展截圖

screenshot

下載Mystore Image Extension擴展crx文件

下載Mystore Image Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Mystore Image Extension Mystore Image Extension
ID ejnfhacnkfiagpcgjjikdcbdmdcgecfl
官方網址 https://chromewebstore.google.com/detail/mystore-image-extension/ejnfhacnkfiagpcgjjikdcbdmdcgecfl
簡介 In-page statistics about image optimization
檔案大小 292 KB
安裝次數 49
目前版本 1.7
更新時間 2022-01-18
上架時間 2021-07-09
評分 5.00/5 共 1 次評分
開發者 ludvigb
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}