Video Speed Controller

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

Τι είναι το Video Speed Controller;

Το Video Speed Controller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Video Speed Controller, και η κύρια λειτουργία του είναι "Video Speed Controller for netflix video, primevideo, hotstar, etc.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Speed Controller

Λήψη αρχείων επέκτασης Video Speed Controller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Video Speed Controller Video Speed Controller
ID gioehmkjkeamcinbdelehlpnpdcdjpdp
Επίσημο URL https://chromewebstore.google.com/detail/video-speed-controller/gioehmkjkeamcinbdelehlpnpdcdjpdp
Περιγραφή Video Speed Controller for netflix video, primevideo, hotstar, etc.
Μέγεθος Αρχείου 750 KB
Αριθμός Εγκαταστάσεων 88,004
Τρέχουσα Έκδοση 3.1.5
Τελευταία Ενημέρωση 2023-05-20
Ημερομηνία Δημοσίευσης 2021-06-25
Αξιολόγηση 4.59/5 Συνολικά 567 Αξιολογήσεις
Προγραμματιστής Video Speed Controller
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://sites.google.com/view/video-speeder/privacy-policy
Υποστηριζόμενες Γλώσσες 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"
        }
    }
}