Transparent Standalone Images

This add-on renders standalone images on a transparent background, so you can see the image in all its glory!

¿Qué es Transparent Standalone Images?

Transparent Standalone Images es una extensión de Chrome desarrollada por Aymr Hraesvelgr, y su función principal es "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Transparent Standalone Images

Descarga archivos de extensión Transparent Standalone Images 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

                        In Chrome all standalone image pages (for example, when you right-click and choose "View Image"), show their image on a white background. This is good for images that were created with the expectation that they would be viewed on a white background.

However, most people who take care with the images that they create don't make this silly mistake. With this add-on installed, you won't have to see that ugly white background behind your transparent images. Now your images will be rendered against the black background, making it easier to see where the transparency starts and begins.                    

Información Básica de la Extensión

Nombre Transparent Standalone Images Transparent Standalone Images
ID inmelfailofaofnfdjdkljfchjhogbmh
URL Oficial https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh
Descripción This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Tamaño del Archivo 33.88 KB
Cantidad de Instalaciones 1,509
Versión Actual 2.2
Última Actualización 2023-12-05
Fecha de Publicación 2021-02-16
Calificación 4.27/5 Total de 11 Calificaciones
Desarrollador Aymr Hraesvelgr
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Transparent Standalone Images",
    "version": "2.2",
    "description": "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!",
    "icons": {
        "64": "appearance-64.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "transparent_image.css"
            ]
        }
    ]
}