Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Τι είναι το Transparent Standalone Images;
Το Transparent Standalone Images είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aymr Hraesvelgr, και η κύρια λειτουργία του είναι "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Transparent Standalone Images
Λήψη αρχείων επέκτασης Transparent Standalone Images σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
Επίσημο URL | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
Περιγραφή | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
Μέγεθος Αρχείου | 33.88 KB |
Αριθμός Εγκαταστάσεων | 1,509 |
Τρέχουσα Έκδοση | 2.2 |
Τελευταία Ενημέρωση | 2023-12-05 |
Ημερομηνία Δημοσίευσης | 2021-02-16 |
Αξιολόγηση | 4.27/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | Aymr Hraesvelgr |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |