Tunable Image Block

A browser extension for limit loading of the images by data size or quality to save bandwidth.

¿Qué es Tunable Image Block?

Tunable Image Block es una extensión de Chrome desarrollada por DEIV ASTRA, y su función principal es "A browser extension for limit loading of the images by data size or quality to save bandwidth.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Tunable Image Block

Descarga archivos de extensión Tunable Image Block en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *** Configuration ***

At first, don't forget to set a limit mode and value in the Options of the extension.

*** Usage & Hotkeys ***

Use Ctrl + mouse move over image for load the original instance.

Note that, a host settings (limit mode and value) restores after browser reloading, but the on/off states of tabs does't.

If you want to see only small images(like icons) but cut off the big, then set image data size between 1K - 5K.

*** Known issues ***

1.On some sites the image fully loading(Ctrl + Mouseover) not working well. It depends on how site was built. I have fixed many issues but I guess that is not all.
2.On some sites a limitation of the image data size is not working. Images loads fully. It happens when a server ignores specific parameter in the request.

*** Release notes ***

2.1
- Fix showing on popup host without ".tld".
- All net request rules are session now to fixed order of execution.
- Fix reload original image after the first load error.

2.0
- First major release.

All the best!                    

Información Básica de la Extensión

Nombre Tunable Image Block Tunable Image Block
ID agpjllgcceliiblmebkbiccaaldfedbc
URL Oficial https://chromewebstore.google.com/detail/tunable-image-block/agpjllgcceliiblmebkbiccaaldfedbc
Descripción A browser extension for limit loading of the images by data size or quality to save bandwidth.
Tamaño del Archivo 32.14 KB
Cantidad de Instalaciones 2,796
Versión Actual 2.1
Última Actualización 2023-12-22
Fecha de Publicación 2017-11-27
Calificación 4.14/5 Total de 43 Calificaciones
Desarrollador DEIV ASTRA
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://deivastra.codeberg.page
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tunable Image Block",
    "version": "2.1",
    "description": "A browser extension for limit loading of the images by data size or quality to save bandwidth.",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeNetRequest",
        "storage"
    ],
    "icons": {
        "128": "icon\/icon-128.png"
    },
    "action": {
        "default_title": "Tunable Image Block",
        "default_icon": "icon\/icon-128.png",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-import.js"
            ],
            "css": [
                "css\/image.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "js\/content.js",
                "js\/api.js",
                "js\/log.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "author": "Deiv Astra"
}