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

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cloudinary Media Library

Λήψη αρχείων επέκτασης 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"
    }
}