Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Workday Charge Code Manager",
"version": "1.4.0",
"description": "Track Workday charge codes and FTE allocations. Auto-syncs hours and shows usage progress.",
"permissions": [
"storage",
"notifications",
"alarms",
"activeTab",
"tabs"
],
"host_permissions": [
"*:\/\/*.workday.com\/*",
"*:\/\/*.myworkday.com\/*"
],
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.workday.com\/*",
"*:\/\/*.myworkday.com\/*"
],
"js": [
"shared\/constants.js",
"shared\/storage-manager.js",
"shared\/hour-calculator.js",
"shared\/week-manager.js",
"shared\/charge-code-manager.js",
"content\/workday-detector.js",
"content\/workday-calendar-detector.js",
"content\/workday-injector.js"
],
"css": [
"content\/workday-injector.css"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
}