HEDCO timesheet utility

A utility to manage your daily activities

Vad är HEDCO timesheet utility?

HEDCO timesheet utility är en Chrome-tillägg utvecklad av amd.sjdn, och dess huvudfunktion är "A utility to manage your daily activities".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner HEDCO timesheet utility-förlängningens CRX-fil

Ladda ner HEDCO timesheet utility-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn HEDCO timesheet utility HEDCO timesheet utility
ID mmbfnnhclipjhjfiopkknobjngebhlog
Officiell webbadress https://chromewebstore.google.com/detail/hedco-timesheet-utility/mmbfnnhclipjhjfiopkknobjngebhlog
Beskrivning A utility to manage your daily activities
Filstorlek 149 KB
Antal Installationer 19
Aktuell Version 1.0.0
Senast Uppdaterad 2018-11-22
Publiceringsdatum 2018-11-22
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare amd.sjdn
Betalningssätt free
Stödda Språk 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"
    }
}