Duolingo Sound Controls

Provides fine-grained sound controls for Duolingo.

Duolingo Sound Controlsคืออะไร?

Duolingo Sound Controls เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blmage และคุณลักษณะหลักของมันคือ "Provides fine-grained sound controls for Duolingo."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duolingo Sound Controls

ดาวน์โหลดไฟล์ส่วนขยาย Duolingo Sound Controls ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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-sound-controls

[Usage]

Click on the extension icon in the browser's toolbar (you may have to pin it first) to open the extension popup and customize the sound settings. New settings will be applied from the next sound played.

[Features]

- Allows defining different volume and speed settings for each type of sound:
      - effects,
      - normal and slow sentences,
      - words,
      - and other sounds,
  depending on the context in which it is played:
      - listening challenges,
      - other challenges,
      - stories,
      - guidebooks,
      - characters,
      - forum discussions,
      - and other contexts.
- All settings can be defined relative to the original settings, or override them entirely (useful if you do not want story sentences to be slowed down on subsequent playbacks, for example).
- Default settings can be defined for each sound type, and reused across multiple contexts.
- A main volume setting is available to quickly adjust the volume of all sounds in a given context.

[Compatibility]

If you are using the Duolingo TTS Controls extension, the corresponding settings will take precedence over those from this extension.

The extension should be compatible with all others out of the box: 
settings applied to sounds by other extensions are treated in the same way as the original Duo settings.

[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 technical constraints, the volume of the sounds can not be raised over 100%.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Duolingo Sound Controls Duolingo Sound Controls
ID fdgmdpdkmbmoikgppbpdkcagdnhgkiih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/duolingo-sound-controls/fdgmdpdkmbmoikgppbpdkcagdnhgkiih
คำอธิบาย Provides fine-grained sound controls for Duolingo.
ขนาดไฟล์ 248 KB
จำนวนการติดตั้ง 735
เวอร์ชันปัจจุบัน 1.7.1
อัปเดตครั้งล่าสุด 2023-07-30
วันที่เผยแพร่ 2021-10-13
คะแนน 4.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา blmage
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/blmage/duolingo-sound-controls
URL หน้าช่วยเหลือ https://github.com/blmage/duolingo-sound-controls/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duolingo Sound Controls",
    "version": "1.7.1",
    "description": "Provides fine-grained sound controls for Duolingo.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.duolingo.com\/"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "browser_style": false,
        "default_popup": "pages\/popup.html",
        "default_icon": "icons\/icon_48.png"
    },
    "web_accessible_resources": [
        "assets\/css\/ui.css",
        "src\/observer.js"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png"
    },
    "manifest_version": 2
}