HEDCO timesheet utility
A utility to manage your daily activities
Cos'è HEDCO timesheet utility?
HEDCO timesheet utility è un'estensione di Chrome sviluppata da amd.sjdn, e la sua funzione principale è "A utility to manage your daily activities".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HEDCO timesheet utility
Scarica i file di estensione HEDCO timesheet utility in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows you to record your daily activities and manage your time. For HEDCO employees this also allows them to automatically fill their time-sheet.
Informazioni di Base sull'Estensione
Nome | HEDCO timesheet utility |
ID | mmbfnnhclipjhjfiopkknobjngebhlog |
URL Ufficiale | https://chromewebstore.google.com/detail/hedco-timesheet-utility/mmbfnnhclipjhjfiopkknobjngebhlog |
Descrizione | A utility to manage your daily activities |
Dimensione del File | 149 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2018-11-22 |
Data di Pubblicazione | 2018-11-22 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | amd.sjdn |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HEDCO timesheet utility", "short_name": "HEDCO timesheet utility", "offline_enabled": true, "description": "A utility to manage your daily activities", "version": "1.0.0", "content_scripts": [ { "matches": [ "*:\/\/new.hedcoint.com\/projects\/sitepages\/timesheet\/*" ], "js": [ "timesheetScript\/timesheet.js" ], "css": [ "timesheetScript\/timesheet.css" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "img\/hedco_48.png", "default_popup": "index.html", "default_title": "HEDCO timesheet utility" }, "permissions": [ "storage" ], "web_accessible_resources": [ "timesheet.html" ], "icons": { "16": "img\/hedco_16.png", "128": "img\/hedco_128.png" } } |