Coursera Smart Resume
Smart resume for Coursera lecture videos.
Coursera Smart Resumeคืออะไร?
Coursera Smart Resume เป็นส่วนขยายของ Chrome ที่พัฒนาโดย herman และคุณลักษณะหลักของมันคือ "Smart resume for Coursera lecture videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coursera Smart Resume
ดาวน์โหลดไฟล์ส่วนขยาย Coursera Smart Resume ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Resume Coursera lecture videos where you last left off instead of always starting at the beginning. If you feel like contributing the code is available on github: https://github.com/has207/coursera-resume-chrome-extension Icons courtesy of http://www.interactivemania.com distributed under the Creative Commons license. Screenshots don't really make sense for this extension so enjoy a view of Mt Fuji from my office window instead.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pieeafmmocmcgkdhiffldpmlfodpagdb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb |
คำอธิบาย | Smart resume for Coursera lecture videos. |
ขนาดไฟล์ | 5.24 KB |
จำนวนการติดตั้ง | 77 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2013-05-07 |
วันที่เผยแพร่ | 2013-05-07 |
ผู้พัฒนา | herman |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coursera Smart Resume", "description": "Smart resume for Coursera lecture videos.", "version": "1.1", "icons": { "48": "resume_48.png", "128": "resume_128.png" }, "permissions": [ "storage", "*:\/\/class.coursera.org\/" ], "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/class.coursera.org\/*" ], "all_frames": true, "js": [ "resume.js" ] } ] } |