Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Was ist Transparent Standalone Images?
Transparent Standalone Images ist eine Chrome-Erweiterung, die von Aymr Hraesvelgr entwickelt wurde, und ihr Hauptmerkmal ist "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Erweiterungsscreenshots
Transparent Standalone Images-Erweiterungs-CRX-Datei herunterladen
Laden Sie Transparent Standalone Images-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
Offizielle URL | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Beschreibung | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Dateigröße | 33.88 KB |
Installationsanzahl | 1,509 |
Aktuelle Version | 2.2 |
Letztes Update | 2023-12-05 |
Veröffentlichungsdatum | 2021-02-16 |
Bewertung | 4.27/5 Insgesamt 11 Bewertungen |
Entwickler | Aymr Hraesvelgr |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |