Change Video Playback Speeds

Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.

Change Video Playback Speeds क्या है?

Change Video Playback Speeds Torey Littlefield द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Change Video Playback Speeds एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Adjust playback speed on most videos including most videos embedded in an iframe. Works with YouTube, Netflix, and other supported video players. Includes additional controls for customizing the styles of Netflix subtitles for more pleasant viewing or greater contrast for readability!

Change Video Playback Speeds is a quick way to speed up or slow down videos by easily moving the slider in the extension popup. Your preferred video playback video is automatically saved but can be reset back to the default speed.

Some features:
- Change speed from 0.0x up to 10x
- Adjust the style of Netflix subtitles by font color, font weight, font size, and screen position.

Getting started: If a video is found on a webpage the extension icon with have a purple background. Just click the icon and adjust the slider to change the video playback speed.                    

एक्सटेंशन की मूल जानकारी

नाम Change Video Playback Speeds Change Video Playback Speeds
ID ncnbdjhoplchclmeanmckpmobhmodlio
आधिकारिक URL https://chromewebstore.google.com/detail/change-video-playback-spe/ncnbdjhoplchclmeanmckpmobhmodlio
विवरण Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.
फ़ाइल का आकार 53.14 KB
स्थापना संख्या 18
वर्तमान संस्करण 0.1
अंतिम अपडेट 2021-08-30
प्रकाशन तिथि 2021-08-30
डेवलपर Torey Littlefield
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/toreylittlefield/Video-Player-Chrome-Extension
सहायता पृष्ठ URL https://github.com/toreylittlefield/Video-Player-Chrome-Extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change Video Playback Speeds",
    "action": {
        "default_popup": ".\/src\/Popup\/disabled.html",
        "default_title": "Control Video Playback Speed",
        "default_icon": {
            "16": "images\/online-video_16.png",
            "48": "images\/online-video_48.png",
            "128": "images\/online-video_128.png"
        }
    },
    "manifest_version": 3,
    "version": "0.1",
    "description": "Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.",
    "permissions": [
        "activeTab",
        "tabs",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "images\/online-video_16.png",
        "48": "images\/online-video_48.png",
        "128": "images\/online-video_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                ".\/dist\/content_scripts.js"
            ]
        }
    ]
}