Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Vad är Transparent Standalone Images?
Transparent Standalone Images är en Chrome-tillägg utvecklad av Aymr Hraesvelgr, och dess huvudfunktion är "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Tilläggsskärmbilder
Ladda ner Transparent Standalone Images-förlängningens CRX-fil
Ladda ner Transparent Standalone Images-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
Officiell webbadress | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Beskrivning | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Filstorlek | 33.88 KB |
Antal Installationer | 1,509 |
Aktuell Version | 2.2 |
Senast Uppdaterad | 2023-12-05 |
Publiceringsdatum | 2021-02-16 |
Betyg | 4.27/5 Totalt 11 Betyg |
Utvecklare | Aymr Hraesvelgr |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |