Google Calendar Event Checker
Mark events as completed or cancelled in Google Calendar with emojis or strikethroughs.
Google Calendar Event Checker là gì?
Google Calendar Event Checker là một tiện ích mở rộng Chrome được phát triển bởi artywhite, và tính năng chính của nó là "Mark events as completed or cancelled in Google Calendar with emojis or strikethroughs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Calendar Event Checker
Tải xuống các tệp mở rộng Google Calendar Event Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
It's perfect tool for those who regularly use Google Calendar in their browser and want to boost productivity, especially in learning how to mark events as done or canceled. The extension is minimal, adding just one button to the event save page, and it doesn't collect any user data. Features: - Customizable visual cue: choose between emojis (✅ or ❌) or a strikethrough effect (title crossed off). - Timestamps for Easy Reference: automatically saves the timestamp of completion or cancellation in the event's description, helping you keep track of your progress. - Minimal and Privacy-Oriented: We respect your privacy. This extension is designed to be minimalistic, does not track any user data, and only requires access to Google Calendar pages. How to Use: 1. Open an event in Google Calendar for editing. 2. Click the completion marks button (✅) and save event. 3. Witness the completion mark in action across all views. To customize visual cues and adjust other settings, visit the extension options page. If you find this Chrome extension useful and want to support its development, you can show your appreciation by: - Buying me a coffee: https://buymeacoffee.com/for_arty - Sending some bitcoins: bc1q37y0j88tgm6ey4a2lx5wh05gs523ud0wglm6qe Changelog 1.6.5 - 02/09/2024: - Internal improvements in error reporting 1.6.4 - 05/26/2023: - fix button size 1.6.3 - 01/06/2023: - Internal improvements in error reporting 1.6.2 - 12/13/2022: - Fix issue with not showing button (input selector got updated) 1.6.1 - 10/09/2022: - Minor internal fixes 1.6.0 - 10/09/2022: - Add error and usage reporting option 1.5.0 - 09/16/2022: - Internal improvements in rendering button 1.4.0 - 02/26/2022: - add crossed mark button ❌ (as a visual cue of canceled event) 1.3.1 - 01/02/2022: - removed redundant permission 'activeTab' 1.3.0 - 10/07/2021: - the strikethrough effect is now configurable in options 1.2.0 - 10/05/2021: - issue with search was fixed by saving origin event's title in the description area (configurable in options) - add date and time label when it was completed to the description textarea (configurable in options) 1.1.0 - 10/04/2020: - add check emoji in the beginning (configurable in options) - fix issue for event titles with emojis
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Calendar Event Checker |
ID | ignkdmgghpdgdlnljcmimlabaiekglhg |
URL Chính Thức | https://chromewebstore.google.com/detail/google-calendar-event-che/ignkdmgghpdgdlnljcmimlabaiekglhg |
Mô tả | Mark events as completed or cancelled in Google Calendar with emojis or strikethroughs. |
Kích Thước Tệp | 45.96 KB |
Số Lần Cài Đặt | 6,744 |
Phiên Bản Hiện Tại | 1.6.5 |
Cập Nhật Lần Cuối | 2024-02-11 |
Ngày Phát Hành | 2019-03-09 |
Đánh Giá | 4.63/5 Tổng số 24 Đánh Giá |
Nhà Phát Triển | artywhite |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/artywhite/gcal-checker-chrome-ext |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Calendar Event Checker", "short_name": "gcal-checker", "version": "1.6.5", "manifest_version": 3, "description": "Mark events as completed or cancelled in Google Calendar with emojis or strikethroughs.", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "run_at": "document_idle", "js": [ "sentry.7.100.1.bundle.min.js", "contentScript.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |