Audio Delay

Add delay to audio

Audio Delay là gì?

Audio Delay là một tiện ích mở rộng Chrome được phát triển bởi mchangrh, và tính năng chính của nó là "Add delay to audio".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Audio Delay

Tải xuống các tệp mở rộng Audio Delay dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
URL Chính Thức https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
Mô tả Add delay to audio
Kích Thước Tệp 25.5 KB
Số Lần Cài Đặt 1,441
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2023-03-16
Ngày Phát Hành 2022-02-08
Đánh Giá 2.73/5 Tổng số 22 Đánh Giá
Nhà Phát Triển mchangrh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mchangrh/audio-delay
URL Trang Trợ Giúp https://github.com/mchangrh/audio-delay/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}