Google Calendar Integration for Todoist
Adds a todoist bar to the Google Calendar page.
Google Calendar Integration for Todoistคืออะไร?
Google Calendar Integration for Todoist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Spencer Hachmeister และคุณลักษณะหลักของมันคือ "Adds a todoist bar to the Google Calendar page."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Calendar Integration for Todoist
ดาวน์โหลดไฟล์ส่วนขยาย Google Calendar Integration for Todoist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | bnbmmdelanagbipabefjmhgpjaindpbn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn |
คำอธิบาย | Adds a todoist bar to the Google Calendar page. |
ขนาดไฟล์ | 200 KB |
จำนวนการติดตั้ง | 188 |
เวอร์ชันปัจจุบัน | 1.0.0.1 |
อัปเดตครั้งล่าสุด | 2017-12-06 |
วันที่เผยแพร่ | 2017-12-06 |
คะแนน | 4.36/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | Spencer Hachmeister |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } } |