Abicart Image Extension

In-page statistics about image optimization

Co to jest Abicart Image Extension?

Abicart Image Extension to rozszerzenie Chrome opracowane przez ludvigb, a jego główną funkcją jest „In-page statistics about image optimization”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Abicart Image Extension

Pobierz pliki rozszerzeń Abicart Image Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension can be used to check Abicart'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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Abicart Image Extension Abicart Image Extension
ID feabclfppjmiabiikkfdghmdhhphfnij
Oficjalny URL https://chromewebstore.google.com/detail/abicart-image-extension/feabclfppjmiabiikkfdghmdhhphfnij
Opis In-page statistics about image optimization
Rozmiar pliku 224 KB
Liczba instalacji 37
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2021-09-24
Data Publikacji 2021-04-07
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper ludvigb
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Abicart Image Extension",
    "version": "1.6",
    "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"
            ]
        }
    ]
}