Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Qu'est-ce que Transparent Standalone Images ?
Transparent Standalone Images est une extension Chrome développée par Aymr Hraesvelgr, et sa fonction principale est "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Transparent Standalone Images
Téléchargez les fichiers d'extension Transparent Standalone Images au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
URL Officiel | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Description | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Taille du Fichier | 33.88 KB |
Nombre d'Installations | 1,509 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2023-12-05 |
Date de Publication | 2021-02-16 |
Évaluation | 4.27/5 Total 11 Évaluations |
Développeur | Aymr Hraesvelgr |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |