Video Play Speed

Easily change the playback speed of videos in your browser: right-click a video, click Video Play Speed, and then choose your speed.

Hvad er Video Play Speed?

Video Play Speed er en Chrome-udvidelse udviklet af Josephus Paye II, og dens hovedfunktion er "Easily change the playback speed of videos in your browser: right-click a video, click Video Play Speed, and then choose your speed.".

Udvidelsesskærmbilleder

screenshot

Download Video Play Speed-udvidelses-CRX-fil

Download Video Play Speed-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension allows you to easily change the playback speed of videos you are watching. You can speed up or slow down your videos in 3 clicks:

1. Right-click the video
2. Click Video Play Speed
3. Choose your playback speed

Note: YouTube™ videos not supported, as YouTube™ already supports changing the playback speed. Also, flash videos not supported, HTML5 videos only.

YouTube™ is a trademark of Google Inc.

The source of this extension is available here: https://github.com/JosephusPaye/video-playback-speed-extension                    

Grundlæggende oplysninger om udvidelsen

Navn Video Play Speed Video Play Speed
ID lciiobdgpdlmfjnahgcdmgebmpfkphpb
Officiel URL https://chromewebstore.google.com/detail/video-play-speed/lciiobdgpdlmfjnahgcdmgebmpfkphpb
Beskrivelse Easily change the playback speed of videos in your browser: right-click a video, click Video Play Speed, and then choose your speed.
Filstørrelse 55.27 KB
Antal Installationer 3,259
Nuværende Version 0.1
Senest Opdateret 2024-01-16
Udgivelsesdato 2016-03-31
Bedømmelse 3.09/5 Samlet 11 Bedømmelser
Udvikler Josephus Paye II
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Play Speed",
    "author": "Josephus Paye II",
    "description": "Easily change the playback speed of videos in your browser: right-click a video, click Video Play Speed, and then choose your speed.",
    "version": "0.1",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "128": "icons\/128.png",
        "256": "icons\/256.png",
        "512": "icons\/512.png"
    },
    "background": {
        "scripts": [
            "video-speed.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}