Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Wat is Transparent Standalone Images?
Transparent Standalone Images is een Chrome-extensie ontwikkeld door Aymr Hraesvelgr, en de belangrijkste functie is "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Extensie Screenshots
Download het CRX-bestand van de extensie Transparent Standalone Images
Download Transparent Standalone Images-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
Officiële URL | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Beschrijving | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Bestandsgrootte | 33.88 KB |
Aantal Installaties | 1,509 |
Huidige Versie | 2.2 |
Laatst Bijgewerkt | 2023-12-05 |
Publicatiedatum | 2021-02-16 |
Beoordeling | 4.27/5 Totaal 11 Beoordelingen |
Ontwikkelaar | Aymr Hraesvelgr |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |