Fill my timesheet!

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

Cos'è Fill my timesheet!?

Fill my timesheet! è un'estensione di Chrome sviluppata da Marc R, e la sua funzione principale è "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fill my timesheet!

Scarica i file di estensione Fill my timesheet! 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Fill my timesheet! Fill my timesheet!
ID ghjamlegpfehemlapljopkoaacihgapg
URL Ufficiale https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg
Descrizione Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Dimensione del File 207 KB
Conteggio Installazioni 17
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-04-11
Data di Pubblicazione 2020-04-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Marc R
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/marc-ed-raffalli/fill-my-timesheet/issues
Lingue Supportate 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"
    ]
}