Google Calendar Integration for Todoist
Adds a todoist bar to the Google Calendar page.
Google Calendar Integration for Todoist là gì?
Google Calendar Integration for Todoist là một tiện ích mở rộng Chrome được phát triển bởi Spencer Hachmeister, và tính năng chính của nó là "Adds a todoist bar to the Google Calendar page.".
Tải xuống tệp CRX của tiện ích mở rộng Google Calendar Integration for Todoist
Tải xuống các tệp mở rộng Google Calendar Integration for Todoist 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | bnbmmdelanagbipabefjmhgpjaindpbn |
URL Chính Thức | https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn |
Mô tả | Adds a todoist bar to the Google Calendar page. |
Kích Thước Tệp | 200 KB |
Số Lần Cài Đặt | 188 |
Phiên Bản Hiện Tại | 1.0.0.1 |
Cập Nhật Lần Cuối | 2017-12-06 |
Ngày Phát Hành | 2017-12-06 |
Đánh Giá | 4.36/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Spencer Hachmeister |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Calendar Integration for Todoist", "version": "1.0.0.1", "author": "Spencer Hachmeister", "description": "Adds a todoist bar to the Google Calendar page.", "options_page": "options.html", "web_accessible_resources": [ "jQuery\/*", "loader.js", "cssLoader.js", "main.css" ], "permissions": [ "https:\/\/calendar.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "run_at": "document_idle", "js": [ "jQuery\/jquery.js", "jQuery\/jquery-ui.js", "loader.js" ], "css": [ "jQuery\/jquery-ui.structure.css", "jQuery\/jquery-ui.theme.css" ] }, { "matches": [ "https:\/\/calendar.google.com\/*" ], "run_at": "document_start", "js": [ "cssLoader.js" ] } ], "background": { "scripts": [ "listener.js" ], "persistent": false } } |