Transparent Standalone Images

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

What is Transparent Standalone Images?

Transparent Standalone Images is a Chrome extension developed by Aymr Hraesvelgr, and its main feature is "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".

Extension Screenshots

screenshot
screenshot

Download Transparent Standalone Images Extension CRX File

Download Transparent Standalone Images 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

                        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.                    

Extension Basic Information

Name Transparent Standalone Images Transparent Standalone Images
ID inmelfailofaofnfdjdkljfchjhogbmh
Official URL https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh
Description This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
File Size 33.88 KB
Installation Count 1,509
Current Version 2.2
Last Updated 2023-12-05
Publish Date 2021-02-16
Rating 4.27/5 Total 11 Ratings
Developer Aymr Hraesvelgr
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}