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 là gì?

Audio/Video Playback Speed Controller là một tiện ích mở rộng Chrome được phát triển bởi Chris Gallegos, và tính năng chính của nó là "A simple interface to control the playback speed of audio and video elements in a webpage.".

Ả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/Video Playback Speed Controller

Tải xuống các tệp mở rộng Audio/Video Playback Speed Controller 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

                        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                    

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

Tên Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
URL Chính Thức https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm
Mô tả A simple interface to control the playback speed of audio and video elements in a webpage.
Kích Thước Tệp 450 KB
Số Lần Cài Đặt 15,128
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2022-01-10
Ngày Phát Hành 2020-04-30
Đánh Giá 4.44/5 Tổng số 27 Đánh Giá
Nhà Phát Triển Chris Gallegos
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://gallegosaudio.com/Extensions-Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}