Fill my timesheet!

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

¿Qué es Fill my timesheet!?

Fill my timesheet! es una extensión de Chrome desarrollada por Marc R, y su función principal es "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Fill my timesheet!

Descarga archivos de extensión Fill my timesheet! en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Fill my timesheet! Fill my timesheet!
ID ghjamlegpfehemlapljopkoaacihgapg
URL Oficial https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg
Descripción Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Tamaño del Archivo 207 KB
Cantidad de Instalaciones 17
Versión Actual 1.0.1
Última Actualización 2020-04-11
Fecha de Publicación 2020-04-11
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Marc R
Tipo de Pago free
URL de la Página de Ayuda https://github.com/marc-ed-raffalli/fill-my-timesheet/issues
Idiomas Soportados 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"
    ]
}