Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
Chrome Tasksคืออะไร?
Chrome Tasks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.codeboss.se และคุณลักษณะหลักของมันคือ "This extension replaces the new tab page with an app for managing Google Tasks"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Tasks
ดาวน์โหลดไฟล์ส่วนขยาย Chrome Tasks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Replaces the default new tab page in Chrome with an app for managing your google tasks.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo |
คำอธิบาย | This extension replaces the new tab page with an app for managing Google Tasks |
ขนาดไฟล์ | 477 KB |
จำนวนการติดตั้ง | 324 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2015-06-10 |
วันที่เผยแพร่ | 2015-06-10 |
คะแนน | 2.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | http://www.codeboss.se |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Tasks", "description": "This extension replaces the new tab page with an app for managing Google Tasks", "version": "0.1.1", "chrome_url_overrides": { "newtab": "myPage.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/robots.txt*" ], "js": [ "oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "icons": { "128": "icon128.png" }, "permissions": [ "activeTab", "https:\/\/www.googleapis.com\/", "https:\/\/accounts.google.com\/o\/oauth2\/token" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ] } |