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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |