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!"입니다.
확장 프로그램 스크린샷
Transparent Standalone Images 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } ] } |