Fill my timesheet!
Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Qu'est-ce que Fill my timesheet! ?
Fill my timesheet! est une extension Chrome développée par Marc R, et sa fonction principale est "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fill my timesheet!
Téléchargez les fichiers d'extension Fill my timesheet! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Fill my timesheet! |
ID | ghjamlegpfehemlapljopkoaacihgapg |
URL Officiel | https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg |
Description | Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form. |
Taille du Fichier | 207 KB |
Nombre d'Installations | 17 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2020-04-11 |
Date de Publication | 2020-04-11 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Marc R |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/marc-ed-raffalli/fill-my-timesheet/issues |
Langues Prises en Charge | 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" ] } |