Cloudinary Media Library
Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.
ما هو Cloudinary Media Library؟
Cloudinary Media Library هو إضافة Chrome تم تطويرها بواسطة Cloudinary Ltd.، والميزة الرئيسية لها هي "Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Cloudinary Media Library
قم بتنزيل ملفات الامتداد Cloudinary Media Library بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The Cloudinary Media Library Extension extends the power of your asset library (DAM) into any web-based application (CMS, PIM, website builder, etc.). Easily access your full asset library, with the ability to search, preview and insert image assets or place URLs of any file type. * Search, find, select, and insert images or image transforms into web-based applications * Basic, advanced, and visual search of media library and created collections * Place URL links to any file type (video, imagery, sprites, etc.) * Generate ‘on-the-fly’ asset variations with UI-based Media & Transformation Editors * Simple install, setup, and use requires no technical knowledge For more details and setup help visit the documentation page: https://cloudinary.com/documentation/media_library_chrome_integration
معلومات أساسية عن التمديد
الاسم | Cloudinary Media Library |
ID | fakfhlanoeblenimbdkeinpkfbghdeff |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/cloudinary-media-library/fakfhlanoeblenimbdkeinpkfbghdeff |
الوصف | Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets. |
حجم الملف | 1.05 MB |
عدد التثبيتات | 872 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2022-06-14 |
تاريخ النشر | 2022-01-17 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Cloudinary Ltd. |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://cloudinary.com |
عنوان صفحة المساعدة | https://support.cloudinary.com |
عنوان صفحة سياسة الخصوصية | https://cloudinary.com/privacy |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloudinary Media Library", "description": "Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.", "version": "1.0.2", "manifest_version": 2, "incognito": "not_allowed", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage", "tabs", "activeTab", "contextMenus", "https:\/\/*\/" ], "browser_action": [], "icons": { "256": "icons\/icon_256.png", "512": "icons\/icon_512.png" } } |