Transparent Standalone Images

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

什么是Transparent Standalone Images?

Transparent Standalone Images是由Aymr Hraesvelgr开发的Chrome扩展程序,该扩展的主要功能是“This add-on renders standalone images on a transparent background, so you can see the image in all its glory!”。

扩展截图

screenshot
screenshot

下载Transparent Standalone Images扩展crx文件

下载Transparent Standalone Images扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Transparent Standalone Images Transparent Standalone Images
ID inmelfailofaofnfdjdkljfchjhogbmh
官方URL https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh
简介 This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
文件大小 33.88 KB
安装次数 1,509
当前版本 2.2
更新时间 2023-12-05
上架时间 2021-02-16
评分 4.27/5 共11次评分
开发者 Aymr Hraesvelgr
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}