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
官方網址 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"
            ]
        }
    ]
}