Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Cos'è Transparent Standalone Images?
Transparent Standalone Images è un'estensione di Chrome sviluppata da Aymr Hraesvelgr, e la sua funzione principale è "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Transparent Standalone Images
Scarica i file di estensione Transparent Standalone Images in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
URL Ufficiale | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Descrizione | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Dimensione del File | 33.88 KB |
Conteggio Installazioni | 1,509 |
Versione Corrente | 2.2 |
Ultimo Aggiornamento | 2023-12-05 |
Data di Pubblicazione | 2021-02-16 |
Valutazione | 4.27/5 Totale 11 Valutazioni |
Sviluppatore | Aymr Hraesvelgr |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |