Inspect and view changes in Zendesk time tracker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.0.20",
"manifest_version": 3,
"name": "Zendesk time tracker",
"description": "A better way to log your work.",
"action": {
"default_popup": "js/index.html",
"default_title": "Zendesk time tracker",
"default_icon": {
"16": "js/images/zendesk-icon.png"
}
},
"icons": {
"16": "js/images/zendesk-icon.png",
"48": "js/images/zendesk-icon-48.png",
"128": "js/images/zendesk-icon-128.png"
},
"permissions": [
"tabs",
"cookies",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "js/background.js",
"type": "module"
}
}