Cloudinary Media Library

Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.

Wat is Cloudinary Media Library?

Cloudinary Media Library is een Chrome-extensie ontwikkeld door Cloudinary Ltd., en de belangrijkste functie is "Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Cloudinary Media Library

Download Cloudinary Media Library-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Cloudinary Media Library Cloudinary Media Library
ID fakfhlanoeblenimbdkeinpkfbghdeff
Officiële URL https://chromewebstore.google.com/detail/cloudinary-media-library/fakfhlanoeblenimbdkeinpkfbghdeff
Beschrijving Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.
Bestandsgrootte 1.05 MB
Aantal Installaties 872
Huidige Versie 1.0.2
Laatst Bijgewerkt 2022-06-14
Publicatiedatum 2022-01-17
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Cloudinary Ltd.
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://cloudinary.com
Help Pagina-URL https://support.cloudinary.com
URL van de Privacybeleid Pagina https://cloudinary.com/privacy
Ondersteunde Talen 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"
    }
}