Zammad Time Recorder

Record Zammad ticket time

What is Zammad Time Recorder?

Zammad Time Recorder is a Chrome extension developed by https://glarotech.ch, and its main feature is "Record Zammad ticket time".

Extension Screenshots

screenshot

Download Zammad Time Recorder Extension CRX File

Download Zammad Time Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Record Zammad ticket time

Track time spent answering a Zammad ticket and notify a webhook once the reply has been sent. So you can track the total amount of time spending on replay to a ticket.                    

Extension Basic Information

Name Zammad Time Recorder Zammad Time Recorder
ID gcdcinjepidacalnccceacfgenooejbh
Official URL https://chromewebstore.google.com/detail/zammad-time-recorder/gcdcinjepidacalnccceacfgenooejbh
Description Record Zammad ticket time
File Size 60.72 KB
Installation Count 46
Current Version 1.0.10
Last Updated 2023-09-21
Publish Date 2020-02-23
Developer https://glarotech.ch
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.glarotech.ch/datenschutzerklaerung
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Zammad Time Recorder",
    "version": "1.0.10",
    "description": "Record Zammad ticket time",
    "author": "Glarotech GmbH",
    "homepage_url": "https:\/\/www.glarotech.ch\/",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "webRequest",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "tracker.js"
            ]
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    }
}