CrowdLog Calendar Sync
Register your daily man-hours on Google Calendar / Outlook Calendar.
Τι είναι το CrowdLog Calendar Sync;
Το CrowdLog Calendar Sync είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 株式会社クラウドワークス, και η κύρια λειτουργία του είναι "Register your daily man-hours on Google Calendar / Outlook Calendar.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CrowdLog Calendar Sync
Λήψη αρχείων επέκτασης CrowdLog Calendar Sync σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
You can select the projects registered in CrowdLog on Google Calendar/Outlook Calendar and reduce the time you spend on daily man-hour entry. ▼Click here to see how to use it https://support.crowdlog.jp/knowledge/integration-calendar-sync ■Terms of Use You need to have an account for CrowdLog, which is a project management tool. ▼If you don't have an account yet, go to the following page. https://www.crowdlog.jp/form/trial/ ■What is "CrowdLog" ? This is a cloud-based man-hour management tool. -Easily enter your work hours and man-hours You can enter work hours and man-hours with an intuitive drag-and-drop operation on the calendar. You can also input data from your smartphone and link it to Google Calendar and Outlook Calendar. -Visualize the work style of teams and individuals You can automatically visualize the time spent on which tasks in which projects from the input data. You will be able to understand the points that need to be streamlined in order to realize work style reform. -Visualize profit for each project You can manage the budget and actual results of sales, cost of sales, and expenses for each project
Βασικές Πληροφορίες Επέκτασης
Όνομα | CrowdLog Calendar Sync |
ID | aajlpbohkcfpmgeamipkmpllmgjmmmpa |
Επίσημο URL | https://chromewebstore.google.com/detail/crowdlog-calendar-sync/aajlpbohkcfpmgeamipkmpllmgjmmmpa |
Περιγραφή | Register your daily man-hours on Google Calendar / Outlook Calendar. |
Μέγεθος Αρχείου | 389 KB |
Αριθμός Εγκαταστάσεων | 2,474 |
Τρέχουσα Έκδοση | 3.0 |
Τελευταία Ενημέρωση | 2024-01-23 |
Ημερομηνία Δημοσίευσης | 2021-12-21 |
Αξιολόγηση | 4.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | 株式会社クラウドワークス |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.crowdlog.jp/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.crowdlog.jp/form/contact/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://crowdworks.co.jp/privacy_policy |
Υποστηριζόμενες Γλώσσες | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "3.0", "manifest_version": 3, "background": { "service_worker": "scripts\/background.js", "type": "module" }, "host_permissions": [ "https:\/\/*.crowdlog.jp\/*" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "scripts\/vendor.js", "scripts\/google-calendar.js", "scripts\/content-script.js" ], "css": [ "styles\/custom-style.css", "styles\/bs-tooltip.css", "styles\/google-calendar.css" ] }, { "matches": [ "https:\/\/outlook.live.com\/calendar\/*", "https:\/\/outlook.office365.com\/calendar\/*", "https:\/\/outlook.office.com\/calendar\/*" ], "match_about_blank": true, "js": [ "scripts\/vendor.js", "scripts\/outlook-calendar.js", "scripts\/content-script.js" ], "css": [ "styles\/custom-style.css", "styles\/bs-tooltip.css", "styles\/outlook-calendar.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/icon-48x48.png", "images\/icon-google-calendar.png", "images\/icon-outlook-calendar.png", "images\/service_logo.png", "images\/icon-help.png", "images\/popup_background.png", "images\/icon-user.png", "images\/icon-company.png", "images\/icon-reload.png", "images\/icon-caret-down.png" ], "matches": [ "https:\/\/calendar.google.com\/*", "https:\/\/outlook.live.com\/*", "https:\/\/outlook.office365.com\/*", "https:\/\/outlook.office.com\/*" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" } }, "icons": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" }, "minimum_chrome_version": "91" } |