Cloudinary Media Library

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

Vad är Cloudinary Media Library?

Cloudinary Media Library är en Chrome-tillägg utvecklad av Cloudinary Ltd., och dess huvudfunktion är "Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Cloudinary Media Library-förlängningens CRX-fil

Ladda ner Cloudinary Media Library-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Cloudinary Media Library Cloudinary Media Library
ID fakfhlanoeblenimbdkeinpkfbghdeff
Officiell webbadress https://chromewebstore.google.com/detail/cloudinary-media-library/fakfhlanoeblenimbdkeinpkfbghdeff
Beskrivning Access your full Cloudinary Digital Asset Management media library to search, find, preview, and place assets.
Filstorlek 1.05 MB
Antal Installationer 872
Aktuell Version 1.0.2
Senast Uppdaterad 2022-06-14
Publiceringsdatum 2022-01-17
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Cloudinary Ltd.
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://cloudinary.com
Hjälpsida URL https://support.cloudinary.com
URL till Sekretesspolicy Sidan https://cloudinary.com/privacy
Stödda Språk 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"
    }
}