NPTEL Condenser

A Chrome Extension that helps condense hour long NPTEL videos into minutes of important snippets.

NPTEL Condenserคืออะไร?

NPTEL Condenser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย India in Pixels และคุณลักษณะหลักของมันคือ "A Chrome Extension that helps condense hour long NPTEL videos into minutes of important snippets."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NPTEL Condenser

ดาวน์โหลดไฟล์ส่วนขยาย NPTEL Condenser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you are an Engineering Student in India, you must know about NPTEL Video Lectures. NPTEL is a repository of educational videos made by IITs, IISc and other premier universities. They are binge-watched by almost every student before their examinations in order to revise the entire course at once.

Each of these videos is an hour long and hence each course requires 40 hours to watch completely. It is both tiring and taxing on the students. The videos were made in order to learn from scratch and not revise in a day.

This is where 'NPTEL Condenser' comes into the scene. 

The one hour duration of each lesson isn't uniformly important. There is a long intro, an outro, portions where the professor gets distracted, there is irrelevant information and so on. NPTEL Condenser skips these parts for you and condenses each video into few minutes of most important content.

It boosts the student's productivity and enhances focus. 

How does NPTEL Condenser do it?
With your help! NPTEL Condenser has three modes: Condenser On, Condenser Off and Editing Mode. In the Editing Mode, users can mark parts of the videos that should be ignored and mark the important parts that should be studied. At the end of marking, users will receive a txt file with the information they just helped create. We request the users to send the file, as it is with no edits to [email protected]

These files will be cross referenced and the central database will be updated and all the users can then view the video you just edited in its condensed form. 

Condenser On keeps the condensation process of the video active while Condenser Off disables it. 

Since the Condensing process is a computationally heavy process, it is advised to turn the mode off when not watching NPTEL videos, or even better, disable the extension.

I created this extension in a week, so the development might not be perfect. I encourage users to modify the package in any manner they wish to for non commercial open source use.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NPTEL Condenser NPTEL Condenser
ID blkbiemnncjjjhhgomoeakfcnjficocl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nptel-condenser/blkbiemnncjjjhhgomoeakfcnjficocl
คำอธิบาย A Chrome Extension that helps condense hour long NPTEL videos into minutes of important snippets.
ขนาดไฟล์ 52.28 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 0.6.8
อัปเดตครั้งล่าสุด 2016-01-27
วันที่เผยแพร่ 2016-01-26
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา India in Pixels
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NPTEL Condenser",
    "description": "A Chrome Extension that helps condense hour long NPTEL videos into minutes of important snippets.",
    "version": "0.6.8",
    "permissions": [
        "storage",
        "https:\/\/gist.githubusercontent.com\/*",
        "downloads"
    ],
    "minimum_chrome_version": "31",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jquery-2.1.3.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "js\/jquery-2.1.3.min.js",
        "js\/main.js",
        "icons\/*.png"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_title": "NPTEL Lite",
        "default_popup": "views\/popup.html"
    },
    "manifest_version": 2,
    "author": "Ashris Choudhury"
}