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은(는) Cloudinary Ltd.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets."입니다.
확장 프로그램 스크린샷
Cloudinary Media Library 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
도움말 페이지 URL | https://support.cloudinary.com |
개인정보 보호 정책 페이지 URL | 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" } } |