Fill my timesheet!
Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
什么是Fill my timesheet!?
Fill my timesheet!是由Marc R开发的Chrome扩展程序,该扩展的主要功能是“Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.”。
扩展截图
下载Fill my timesheet!扩展crx文件
下载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! |
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" ] } |