Fill my timesheet!

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

Что такое Fill my timesheet!?

Fill my timesheet! - это расширение Chrome, разработанное Marc R, и его основная функция - "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Fill my timesheet!

Скачайте файлы расширений Fill my timesheet! в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Fill my timesheet! Fill my timesheet!
ID ghjamlegpfehemlapljopkoaacihgapg
Официальный URL https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg
Описание Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Размер файла 207 KB
Количество установок 17
Текущая Версия 1.0.1
Последнее Обновление 2020-04-11
Дата публикации 2020-04-11
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Marc R
Тип оплаты free
URL страницы помощи https://github.com/marc-ed-raffalli/fill-my-timesheet/issues
Поддерживаемые языки 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"
    ]
}