Coursera Smart Resume
Smart resume for Coursera lecture videos.
What is Coursera Smart Resume?
Coursera Smart Resume is a Chrome extension developed by herman, and its main feature is "Smart resume for Coursera lecture videos.".
Extension Screenshots
Download Coursera Smart Resume Extension CRX File
Download Coursera Smart Resume extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | pieeafmmocmcgkdhiffldpmlfodpagdb |
Official URL | https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb |
Description | Smart resume for Coursera lecture videos. |
File Size | 5.24 KB |
Installation Count | 77 |
Current Version | 1.1 |
Last Updated | 2013-05-07 |
Publish Date | 2013-05-07 |
Developer | herman |
Payment Type | free |
Supported Languages | 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" ] } ] } |