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" ] } |