playrate

Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video

Vad är playrate?

playrate är en Chrome-tillägg utvecklad av Evaw, och dess huvudfunktion är "Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video".

Tilläggsskärmbilder

Ladda ner playrate-förlängningens CRX-fil

Ladda ner playrate-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

                        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äggande Information om Tillägg

Namn playrate playrate
ID pjefnlaeacgiihhaahpglacipajmbfjb
Officiell webbadress https://chrome.google.com/webstore/detail/playrate/pjefnlaeacgiihhaahpglacipajmbfjb
Beskrivning Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video
Filstorlek 17.35 KB
Antal Installationer 301
Aktuell Version 1.0.2
Senast Uppdaterad 2016-04-07
Publiceringsdatum 2016-04-07
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Evaw
Betalningssätt free
Tilläggswebbplats https://github.com/Evaw/playrate
Stödda Språk 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"
    ]
}