Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Co je Transparent Standalone Images?
Transparent Standalone Images je rozšíření Chrome vyvinuté Aymr Hraesvelgr, a jeho hlavní funkcí je „This add-on renders standalone images on a transparent background, so you can see the image in all its glory!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Transparent Standalone Images
Stáhněte si soubory rozšíření Transparent Standalone Images ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
Oficiální URL | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Popis | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Velikost souboru | 33.88 KB |
Počet instalací | 1,509 |
Aktuální Verze | 2.2 |
Poslední Aktualizace | 2023-12-05 |
Datum Vydání | 2021-02-16 |
Hodnocení | 4.27/5 Celkem 11 Hodnocení |
Vývojář | Aymr Hraesvelgr |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |