playrate
Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video
Hvad er playrate?
playrate er en Chrome-udvidelse udviklet af Evaw, og dens hovedfunktion er "Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video".
Udvidelsesskærmbilleder
Download playrate-udvidelses-CRX-fil
Download playrate-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
You can speedup or slowdown a video. This extension allows you to control the playback rate of an html video on the current page. The goal is to be very simple and just do one thing. Disclaimer * if the video is played through a plugin like flash, this extension will not be able to function.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | pjefnlaeacgiihhaahpglacipajmbfjb |
Officiel URL | https://chrome.google.com/webstore/detail/playrate/pjefnlaeacgiihhaahpglacipajmbfjb |
Beskrivelse | Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video |
Filstørrelse | 17.35 KB |
Antal Installationer | 301 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2016-04-07 |
Udgivelsesdato | 2016-04-07 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Evaw |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Evaw/playrate |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "playrate", "version": "1.0.2", "icons": { "48": "icon48.png", "128": "icon128.png" }, "description": "Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "browser_action": { "default_icon": "playrate.png", "default_popup": "popup.html" }, "permissions": [ "tabs" ] } |