Coursera Smart Resume

Smart resume for Coursera lecture videos.

ما هو Coursera Smart Resume؟

Coursera Smart Resume هو إضافة Chrome تم تطويرها بواسطة herman، والميزة الرئيسية لها هي "Smart resume for Coursera lecture videos.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Coursera Smart Resume

قم بتنزيل ملفات الامتداد Coursera Smart Resume بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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.                    

معلومات أساسية عن التمديد

الاسم Coursera Smart Resume Coursera Smart Resume
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"
            ]
        }
    ]
}