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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aymr Hraesvelgr และคุณลักษณะหลักของมันคือ "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Transparent Standalone Images

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}