Khan Academy Playback Speed Controller

Controls the playback speed of your khan academy video

What is Khan Academy Playback Speed Controller?

Khan Academy Playback Speed Controller is a Chrome extension developed by Dhruman Gupta, and its main feature is "Controls the playback speed of your khan academy video".

Extension Screenshots

screenshot

Download Khan Academy Playback Speed Controller Extension CRX File

Download Khan Academy Playback Speed Controller 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

                        This is an extenstion that allows you to speed up your videos beyond 2x on khan academy.
Made for power users :)                    

Extension Basic Information

Name Khan Academy Playback Speed Controller Khan Academy Playback Speed Controller
ID dndcpejlplhllhpagbmpdgchcmcdgnii
Official URL https://chromewebstore.google.com/detail/khan-academy-playback-spe/dndcpejlplhllhpagbmpdgchcmcdgnii
Description Controls the playback speed of your khan academy video
File Size 8.19 KB
Installation Count 216
Current Version 1.0.0
Last Updated 2022-04-15
Publish Date 2022-04-14
Rating 4.33/5 Total 3 Ratings
Developer Dhruman Gupta
Email [email protected]
Payment Type free
Extension Website https://github.com/DhrumanGupta/khan-academy-playback-speed
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Khan Academy Playback Speed Controller",
    "description": "Controls the playback speed of your khan academy video",
    "version": "1.0.0",
    "author": "Dhruman Gupta",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.khanacademy.org\/*",
                "*:\/\/www.youtube-nocookie.com\/*"
            ],
            "all_frames": true,
            "js": [
                "injectedKhanAcademy.js"
            ]
        }
    ],
    "action": {
        "default_title": "Khan Academy playback speed",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}