Coursera Smart Resume
Smart resume for Coursera lecture videos.
Coursera Smart Resume क्या है?
Coursera Smart Resume herman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Smart resume for Coursera lecture videos."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Coursera Smart Resume एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |