Video Speed Controller

Video Speed Controller for netflix video, primevideo, hotstar, etc.

Vad är Video Speed Controller?

Video Speed Controller är en Chrome-tillägg utvecklad av Video Speed Controller, och dess huvudfunktion är "Video Speed Controller for netflix video, primevideo, hotstar, etc.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Video Speed Controller-förlängningens CRX-fil

Ladda ner Video Speed Controller-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

                        Do you find it difficult to adjust the video playback speed on streaming platforms like Netflix, Amazon Prime Video, Youtube, Twitch, and Disney+ Hotstar?  

Presenting Video Speed Controller, a Google Chrome extension that lets you fine-tune the playback settings on your favourite streaming website. From 0.25x, 0.5x, 0.75x, 1.5x, 2x, 3x, and 4x...the extension supports all kinds of playback settings.

How to use Video Speed Controller Extension:
- Install the extension and pin to your browser (one-time process).
- Open any video on your desired streaming website.
- Click on the extension’s icon.
- Use the extension’s pop-up to specify the video playback settings.
- The chosen settings are applied to the video.

Video Speed Controller Shortcuts:
To Increase: Ctrl+Shift+Right for Windows, Linux & Command+Shift+Right for Mac OS
To Decrease: Ctrl+Shift+Left for Windows, Linux & Command+Shift+Left for Mac OS
To Open: Ctrl+Shift+J for Windows, Linux & Option+J for Mac OS

Now sit back and relax! Play around with the playback options to see what fits you the best. 

Version 3.1.0 changes:
>> Added extension icon of different sizes

Version 3.0.0 changes:
>> Now works on iframe video. 
>> Removed unnecessary permissions and code

Version 2.1.0 changes:
>> Added the functionality to support up to 4x speed
>> Enabled short codes support for mac, windows and linux

Version 2.0.1 changes:
>> Works on all streaming sites
>> Supports on every video playback
>> Supports up to 12 languages
>> Improved UI & bug fixes                    

Grundläggande Information om Tillägg

Namn Video Speed Controller Video Speed Controller
ID gioehmkjkeamcinbdelehlpnpdcdjpdp
Officiell webbadress https://chromewebstore.google.com/detail/video-speed-controller/gioehmkjkeamcinbdelehlpnpdcdjpdp
Beskrivning Video Speed Controller for netflix video, primevideo, hotstar, etc.
Filstorlek 750 KB
Antal Installationer 88,004
Aktuell Version 3.1.5
Senast Uppdaterad 2023-05-20
Publiceringsdatum 2021-06-25
Betyg 4.59/5 Totalt 567 Betyg
Utvecklare Video Speed Controller
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sites.google.com/view/video-speeder/privacy-policy
Stödda Språk en,tr,es,ru,hi,ta,te,kn-IN,ml,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "3.1.5",
    "description": "__MSG_desName__",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "default_locale": "en",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "mac": "Alt+Y",
                "linux": "Ctrl+Shift+J",
                "windows": "Ctrl+Shift+Y"
            }
        },
        "left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "Decrease Speed"
        },
        "right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "Command+Shift+Right"
            },
            "description": "Increase Speed"
        }
    }
}