Zendesk Download Router

Automatically routes Zendesk downloads into separate folders by ticket number

Zendesk Download Router란 무엇입니까?

Zendesk Download Router은(는) GitLab Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically routes Zendesk downloads into separate folders by ticket number"입니다.

확장 프로그램 스크린샷

screenshot

Zendesk Download Router 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automatically route Zendesk downloads into separate folders!

The Zendesk Download Router allows you to specify how you want to route your Zendesk attachment downloads. You can set a custom path based on the incoming ticket ID, ticket title or ticket organization name. 

Other features include:

✓ Easily open previously downloaded files when viewing a ticket by clicking on the extension icon (via the extension icon and a keyboard shortcut)
✓ Download all attachments at once in the current ticket (via the ticket dropdown or via a keyboard shortcut)
✓ Download all attachments at once for each ticket comment                    

확장 프로그램 기본 정보

이름 Zendesk Download Router Zendesk Download Router
ID pgfhacdbkdeppdjgighdeejjfneifkml
공식 URL https://chromewebstore.google.com/detail/zendesk-download-router/pgfhacdbkdeppdjgighdeejjfneifkml
설명 Automatically routes Zendesk downloads into separate folders by ticket number
파일 크기 178 KB
설치 횟수 243
현재 버전 3.5.0
최근 업데이트 2023-12-07
출시 날짜 2020-05-17
평점 4.75/5 총 8 개의 평점
개발자 GitLab Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/gitlab-com/support/toolbox/zd-dl-router
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zendesk Download Router",
    "version": "3.5.0",
    "icons": {
        "32": "assets\/icons\/icon32.png",
        "48": "assets\/icons\/icon48.png",
        "64": "assets\/icons\/icon64.png",
        "128": "assets\/icons\/icon128.png"
    },
    "description": "Automatically routes Zendesk downloads into separate folders by ticket number",
    "homepage_url": "https:\/\/gitlab.com\/gitlab-com\/support\/toolbox\/zd-dl-router",
    "short_name": "zd-dl-router",
    "permissions": [
        "activeTab",
        "downloads",
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "GitLab Inc.",
    "minimum_chrome_version": "49",
    "page_action": {
        "default_icon": {
            "32": "assets\/icons\/icon32.png",
            "48": "assets\/icons\/icon48.png",
            "64": "assets\/icons\/icon64.png",
            "128": "assets\/icons\/icon128.png"
        },
        "default_title": "Zendesk Download Router",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.zendesk.com\/*",
                "https:\/\/*.apps.zdusercontent.com\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "css": [
                "css\/contentScript.css"
            ]
        }
    ],
    "commands": {
        "download-all-attachments": {
            "description": "Downloads all attachments for the current ticket"
        },
        "open-download-folder": {
            "description": "Opens the download folder for the current ticket (if it exists)"
        }
    },
    "web_accessible_resources": [
        "assets\/icons\/icon128.png"
    ]
}