Fill my timesheet!

Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.

Was ist Fill my timesheet!?

Fill my timesheet! ist eine Chrome-Erweiterung, die von Marc R entwickelt wurde, und ihr Hauptmerkmal ist "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Fill my timesheet!-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fill my timesheet!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Helper extension to fill out timesheet form.
It allows to set default reports to be used to fill the timesheet report in 3 clicks. 
A report has the following fields: time-in, time-out, comment as well as which days of the week the values should be set in the report.

Currently supports Purely HR timesheet form.                    

Grundlegende Informationen zur Erweiterung

Name Fill my timesheet! Fill my timesheet!
ID ghjamlegpfehemlapljopkoaacihgapg
Offizielle URL https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg
Beschreibung Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Dateigröße 207 KB
Installationsanzahl 17
Aktuelle Version 1.0.1
Letztes Update 2020-04-11
Veröffentlichungsdatum 2020-04-11
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Marc R
Zahlungsart free
Hilfeseite URL https://github.com/marc-ed-raffalli/fill-my-timesheet/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0.1",
    "default_locale": "en",
    "manifest_version": 2,
    "icons": {
        "128": "images\/fmt-icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.purelyhr.com\/*"
            ],
            "js": [
                "shared.js",
                "content.js",
                "content-purely-hr.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Complete form to automatically fill the timesheet",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}