Coursera Smart Resume
Smart resume for Coursera lecture videos.
Coursera Smart Resume란 무엇입니까?
Coursera Smart Resume은(는) herman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smart resume for Coursera lecture videos."입니다.
확장 프로그램 스크린샷
Coursera Smart Resume 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |