Coursera Playback Speed

Allows you to set playback speed to any value (from 0.25x to 10x)

Vad är Coursera Playback Speed?

Coursera Playback Speed är en Chrome-tillägg utvecklad av Church of Thought, och dess huvudfunktion är "Allows you to set playback speed to any value (from 0.25x to 10x)".

Tilläggsskärmbilder

screenshot

Ladda ner Coursera Playback Speed-förlängningens CRX-fil

Ladda ner Coursera Playback Speed-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Coursera's video player normally caps the playback speed to a maximum of 2x. With this extension, the playback speed can be increased to any desired multiplier from 0.25x to 10x.

The keyboard shortcuts are listed below:
Space: Play/Pause
Up: Increase Volume
Down: Decrease Volume
Left: Skip Back
Right: Skip Forward
F: Toggle Fullscreen                    

Grundläggande Information om Tillägg

Namn Coursera Playback Speed Coursera Playback Speed
ID ggonllaomlopoinanbapoaamhomlflao
Officiell webbadress https://chromewebstore.google.com/detail/coursera-playback-speed/ggonllaomlopoinanbapoaamhomlflao
Beskrivning Allows you to set playback speed to any value (from 0.25x to 10x)
Filstorlek 19.73 KB
Antal Installationer 983
Aktuell Version 1.1
Senast Uppdaterad 2022-04-11
Publiceringsdatum 2020-10-17
Betyg 4.13/5 Totalt 16 Betyg
Utvecklare Church of Thought
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://churchofthought.org/blog/2020/10/15/coursera-playback-speed-a-cross-browser-webextension/
URL till Sekretesspolicy Sidan https://churchofthought.org/privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Allows you to set playback speed to any value (from 0.25x to 10x)",
    "manifest_version": 2,
    "name": "Coursera Playback Speed",
    "short_name": "Coursera Playspeed",
    "version": "1.1",
    "icons": {
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.coursera.org\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hook.js"
    ]
}