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 là gì?
Transparent Standalone Images là một tiện ích mở rộng Chrome được phát triển bởi Aymr Hraesvelgr, và tính năng chính của nó là "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Transparent Standalone Images
Tải xuống các tệp mở rộng Transparent Standalone Images dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
URL Chính Thức | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Mô tả | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Kích Thước Tệp | 33.88 KB |
Số Lần Cài Đặt | 1,509 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2023-12-05 |
Ngày Phát Hành | 2021-02-16 |
Đánh Giá | 4.27/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Aymr Hraesvelgr |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |