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 Aymr Hraesvelgr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Transparent Standalone Images एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |