Coursera Smart Resume
Smart resume for Coursera lecture videos.
Coursera Smart Resume là gì?
Coursera Smart Resume là một tiện ích mở rộng Chrome được phát triển bởi herman, và tính năng chính của nó là "Smart resume for Coursera lecture videos.".
Ả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 Coursera Smart Resume
Tải xuống các tệp mở rộng Coursera Smart Resume 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pieeafmmocmcgkdhiffldpmlfodpagdb |
URL Chính Thức | https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb |
Mô tả | Smart resume for Coursera lecture videos. |
Kích Thước Tệp | 5.24 KB |
Số Lần Cài Đặt | 77 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2013-05-07 |
Ngày Phát Hành | 2013-05-07 |
Nhà Phát Triển | herman |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |