Fill my timesheet!

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

Fill my timesheet! là gì?

Fill my timesheet! là một tiện ích mở rộng Chrome được phát triển bởi Marc R, và tính năng chính của nó là "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fill my timesheet!

Tải xuống các tệp mở rộng Fill my timesheet! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fill my timesheet! Fill my timesheet!
ID ghjamlegpfehemlapljopkoaacihgapg
URL Chính Thức https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg
Mô tả Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Kích Thước Tệp 207 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-04-11
Ngày Phát Hành 2020-04-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Marc R
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/marc-ed-raffalli/fill-my-timesheet/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}