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文件

下載Zendesk Download Router擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}