Fill my timesheet!
Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Fill my timesheet! क्या है?
Fill my timesheet! Marc R द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fill my timesheet! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |