Vimeo repeat & speed

Repeat & Speed buttons for Vimeo HTML5 video

What is Vimeo repeat & speed?

Vimeo repeat & speed is a Chrome extension developed by Rudie Dirkx, and its main feature is "Repeat & Speed buttons for Vimeo HTML5 video".

Extension Screenshots

screenshot

Download Vimeo repeat & speed Extension CRX File

Download Vimeo repeat & speed 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

                        Adds 2 buttons to Vimeo's HTML5 video player:

* REPEAT -- for listening good music
* SPEED (playback rate) -- for slow presentations

History

1.11
Set default speed (through extension icon > Options).

1.10
Accept comma numbers. Hotkeys - and + for speed.

1.8
Added playlist support. Always add buttons always.

1.5
+support for embedded vimeo (on player.vimeo.com).

1.4
Use onTimeUpdate instead of onEnded, to listen to before-the-end, to make it work in playlists etc.                    

Extension Basic Information

Name Vimeo repeat & speed Vimeo repeat & speed
ID noonakfaafcdaagngpjehilgegefdima
Official URL https://chrome.google.com/webstore/detail/vimeo-repeat-speed/noonakfaafcdaagngpjehilgegefdima
Description Repeat & Speed buttons for Vimeo HTML5 video
File Size 7.29 KB
Installation Count 100,000
Current Version 1.13
Last Updated 2022-06-15
Publish Date 2018-11-02
Rating 4.41/5 Total 406 Ratings
Developer Rudie Dirkx
Email [email protected]
Payment Type free
Extension Website https://github.com/rudiedirkx/Vimeo-repeat
Help Page URL https://github.com/rudiedirkx/Vimeo-repeat
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vimeo repeat & speed",
    "description": "Repeat & Speed buttons for Vimeo HTML5 video",
    "optional_permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "vimeo.content.js"
            ],
            "matches": [
                "*:\/\/vimeo.com\/*",
                "*:\/\/player.vimeo.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "128": "images\/vimeo128.png",
        "48": "images\/vimeo48.png"
    },
    "version": "1.13",
    "manifest_version": 3
}