Digizuite™ DAM Connector

Add Digizuite Embedded UI to chrome and benefit from your single source of truth.

Digizuite™ DAM Connector란 무엇입니까?

Digizuite™ DAM Connector은(는) rnd.digizuite에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add Digizuite Embedded UI to chrome and benefit from your single source of truth."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Digizuite™ DAM Connector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Digizuite Chrome Extension allows you to access all approved images and videos you need from any tab in chrome and on any website. Simply click on the asset (in the exact format needed) and get a direct URL which can be used in all from emails to marketing automation or CMS tools.                    

확장 프로그램 기본 정보

이름 Digizuite™ DAM Connector Digizuite™ DAM Connector
ID oaoljlnnfajdknoldafoelalijmaebkg
공식 URL https://chromewebstore.google.com/detail/digizuite-dam-connector/oaoljlnnfajdknoldafoelalijmaebkg
설명 Add Digizuite Embedded UI to chrome and benefit from your single source of truth.
파일 크기 26.1 KB
설치 횟수 83
현재 버전 2.0.4
최근 업데이트 2023-12-07
출시 날짜 2022-07-22
평점 5.00/5 총 4 개의 평점
개발자 rnd.digizuite
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://digizuite.com
도움말 페이지 URL https://digizuite.atlassian.net/wiki/spaces/DD/pages/3294396417/DCE+5.5
개인정보 보호 정책 페이지 URL https://www.digizuite.com/doc
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Digizuite\u2122 DAM Connector",
    "version": "2.0.4",
    "description": "Add Digizuite Embedded UI to chrome and benefit from your single source of truth.",
    "action": {
        "default_title": "Digizuite DAM",
        "default_icon": {
            "16": "src\/assets\/digizuite_logo16.png",
            "32": "src\/assets\/digizuite_logo32.png",
            "48": "src\/assets\/digizuite_logo48.png",
            "128": "src\/assets\/digizuite_logo128.png"
        }
    },
    "icons": {
        "16": "src\/assets\/digizuite_logo16.png",
        "32": "src\/assets\/digizuite_logo32.png",
        "48": "src\/assets\/digizuite_logo48.png",
        "128": "src\/assets\/digizuite_logo128.png"
    },
    "background": {
        "service_worker": "src\/background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.digizuite.com\/*",
                "https:\/\/*.digizuiteusa.com\/*",
                "https:\/\/*.atlassian.net\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/content-scripts\/change-url-event.js",
                "src\/content-scripts\/asset-message-event.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/www.digizuite.com\/",
    "options_page": "src\/options\/options.html"
}