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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |