HEDCO timesheet utility

A utility to manage your daily activities

Co to jest HEDCO timesheet utility?

HEDCO timesheet utility to rozszerzenie Chrome opracowane przez amd.sjdn, a jego główną funkcją jest „A utility to manage your daily activities”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia HEDCO timesheet utility

Pobierz pliki rozszerzeń HEDCO timesheet utility w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa HEDCO timesheet utility HEDCO timesheet utility
ID mmbfnnhclipjhjfiopkknobjngebhlog
Oficjalny URL https://chromewebstore.google.com/detail/hedco-timesheet-utility/mmbfnnhclipjhjfiopkknobjngebhlog
Opis A utility to manage your daily activities
Rozmiar pliku 149 KB
Liczba instalacji 19
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-11-22
Data Publikacji 2018-11-22
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper amd.sjdn
Typ Płatności free
Obsługiwane Języki 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"
    }
}