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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Cloudinary Media Library扩展crx文件

下载Cloudinary Media Library扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
    }
}