Audio Delay

Add delay to audio

Audio Delay क्या है?

Audio Delay mchangrh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add delay to audio"।

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

screenshot

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

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

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

                        Delays audio with WebAudio API.

Similar to other extensions, this extension intentionally delays and desyncs audio from linked video with the Web Audio API for compatibility with other extensions

Licenced under the MIT Licence
Source code at https://github.com/mchangrh/audio-delay

Changelog:

v0.2
- Added support for more than just YouTube, fixed edge cases where audio would not attach.                    

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

नाम Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
आधिकारिक URL https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
विवरण Add delay to audio
फ़ाइल का आकार 25.5 KB
स्थापना संख्या 1,441
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2023-03-16
प्रकाशन तिथि 2022-02-08
रेटिंग 2.73/5 कुल 22 रेटिंग्स
डेवलपर mchangrh
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mchangrh/audio-delay
सहायता पृष्ठ URL https://github.com/mchangrh/audio-delay/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Audio Delay",
    "description": "Add delay to audio",
    "version": "0.2.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/128.png",
        "default_popup": "src\/popup.html",
        "default_title": "Audio Delay"
    },
    "options_page": "src\/options.html"
}