Audio/Video Playback Speed Controller

A simple interface to control the playback speed of audio and video elements in a webpage.

Audio/Video Playback Speed Controller क्या है?

Audio/Video Playback Speed Controller Chris Gallegos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple interface to control the playback speed of audio and video elements in a webpage."।

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

screenshot

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

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

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

                        Controls the playback speed of all audio and video elements on a webpage.

Features:
- No permissions required
- 5 preset speeds
- Custom speed slider color coded to indicate fast-forward/slow-motion:
    - Green means normal speed
    - Cyan means fast-forward
    - Red means slow-motion
- Custom speed slider snaps into place for common speeds
- Speed setting is automatically saved for each individual webpage                    

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

नाम Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
आधिकारिक URL https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm
विवरण A simple interface to control the playback speed of audio and video elements in a webpage.
फ़ाइल का आकार 450 KB
स्थापना संख्या 15,128
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-01-10
प्रकाशन तिथि 2020-04-30
रेटिंग 4.44/5 कुल 27 रेटिंग्स
डेवलपर Chris Gallegos
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL http://gallegosaudio.com/Extensions-Privacy-Policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Audio\/Video Playback Speed Controller",
    "short_name": "Playback Controller",
    "version": "1.1",
    "description": "A simple interface to control the playback speed of audio and video elements in a webpage.",
    "browser_action": {
        "default_title": "Playback Controller",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/fast_forward_16.png",
            "32": "icons\/fast_forward_32.png",
            "64": "icons\/fast_forward_64.png",
            "128": "icons\/fast_forward_128.png",
            "256": "icons\/fast_forward_256.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icons\/fast_forward_16.png",
        "32": "icons\/fast_forward_32.png",
        "64": "icons\/fast_forward_64.png",
        "128": "icons\/fast_forward_128.png",
        "256": "icons\/fast_forward_256.png"
    }
}