Duolingo TTS Controls

Provides playback controls for some of the challenges on Duolingo.

Duolingo TTS Controls là gì?

Duolingo TTS Controls là một tiện ích mở rộng Chrome được phát triển bởi blmage, và tính năng chính của nó là "Provides playback controls for some of the challenges on Duolingo.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Duolingo TTS Controls 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

                        For more detailed information, screenshots, or if you have any support request, visit the development page of the extension here:
https://github.com/blmage/duolingo-tts-controls

[Features]

- Adds controls to each sound of the listening / speaking / translation challenges.
- Full controls are available by hovering over the buttons or using the keyboard shortcuts, and feature:
    - a rate (speed) slider,
    - a volume slider,
    - a seek bar,
    - a play/pause button,
    - a stop button,
    - a "pin" button (to define the current position as the new starting position).
- Strives to blend seamlessly in Duolingo's UI, and to be compatible with custom themes such as Darklingo++.

[Keyboard shortcuts]

The selected control panel is identifiable by the keyboard icon that is added next to its buttons.

In order to use the keyboard shortcuts, the selected control panel must be focused by pressing [ Ctrl ].
 
Once focused, the keyboard icon becomes highlighted, and you can use:
    - [ Ctrl ] to focus back the answer input,
    - [ Tab ] to select (and focus) the next control panel,
    - [ < ] / [ > ]  to decrease / increase the playback rate (speed) (or [ Ctrl ] + [ ← ] / [ → ]),
    - [ ↓ ] / [ ↑ ] to decrease / increase the playback volume,
    - [ ← ] / [ → ] to move the position backward / forward,
    - [ 0 ] .. [ 9 ] to set the position at 0 .. 90% of the duration,
    - [ Home ] to set the position at the start,
    - [ End ] to set the position at the end (think of it more or less as a stop button),
    - [ Space ] / [ k ]to play / pause the sound  (or [ Ctrl ] + [ ↑ ]),
    - [ p ] to "pin" the current position (the sound will now start from there each time it is played) (or [ Ctrl ] + [ ↓ ]).

Shortcuts behind parentheses are provided as alternatives for when the main ones are not available.

This can happen for example when a "keyboard-aware" word bank is available for the current challenge.

[Limitations]

- The extension is deeply tied to the inner workings of Duolingo, meaning that significant changes on their side could (temporarily) break it. If that happens, you can either:
    - wait for me to fix it (you can open an issue on the support page if there is none about it yet),
    - if you're a developer, try to fix it yourself, then open a related PR on the development page.
- Due to hard limitations with the underlying technology (sounds are not accessible via Ajax requests, preventing us from using the Web Audio API), the volume can not be raised over 100%.                    

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

Tên Duolingo TTS Controls Duolingo TTS Controls
ID hfgbpmknceenkbljmjlogkmhbpnbiika
URL Chính Thức https://chromewebstore.google.com/detail/duolingo-tts-controls/hfgbpmknceenkbljmjlogkmhbpnbiika
Mô tả Provides playback controls for some of the challenges on Duolingo.
Kích Thước Tệp 69.67 KB
Số Lần Cài Đặt 470
Phiên Bản Hiện Tại 2.5.0
Cập Nhật Lần Cuối 2023-10-31
Ngày Phát Hành 2020-07-09
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển blmage
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/blmage/duolingo-tts-controls
URL Trang Trợ Giúp https://github.com/blmage/duolingo-tts-controls/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duolingo TTS Controls",
    "version": "2.5.0",
    "description": "Provides playback controls for some of the challenges on Duolingo.",
    "permissions": [
        "https:\/\/*.duolingo.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "src\/observer.js",
        "src\/ui.js",
        "assets\/css\/ui.css"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png",
        "512": "icons\/icon_512.png"
    },
    "manifest_version": 2
}