Listen and Repeat - Language Learning

Learn a new language on Youtube

Τι είναι το Listen and Repeat - Language Learning;

Το Listen and Repeat - Language Learning είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ccgami, και η κύρια λειτουργία του είναι "Learn a new language on Youtube".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Listen and Repeat - Language Learning

Λήψη αρχείων επέκτασης Listen and Repeat - Language Learning σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension helps you learn listening and speaking more efficiently on Youtube

How to use:

1. Install the extension
2. Go to the Youtube watch page (URL format: https://www.youtube.com/watch?v=)
3. Make sure subtitles are available and ready to use (Important!)
4. If the extension panel is not displayed, please refresh the page (F5)

Why develop this extension?

You may know that Youtube automatically generates subtitles for their videos, the problems with using these subtitles are:

1. Sentences always stick together, which makes it awkward to listen repeatedly
2. When you encounter translation errors, there is no relevant features to correct them
3. Sometimes the sentences are too long, which is not good for beginner

How does this extension solve the above problem?
1. Provide drag and drop feature to separate sentences
2. "Double click" subtitles to edit them or delete them
3. Use the drag and drop feature to compose your own listening combination
4. Click on a word to hear the pronunciation from the video, not from the dictionary

More features:
★ Save / Load editing progress
★ Download / Upload subtitles
★ This extension is optimized for subtitles generated by Youtube, but also supports subtitles uploaded by the creator

- If you want to speed up / slow down the playback speed, you can use the shortcuts provided by Youtube (Shift + )                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Listen and Repeat - Language Learning Listen and Repeat - Language Learning
ID dlbbmmeaglbjmlddnpdbfhcpepnkfofk
Επίσημο URL https://chromewebstore.google.com/detail/listen-and-repeat-languag/dlbbmmeaglbjmlddnpdbfhcpepnkfofk
Περιγραφή Learn a new language on Youtube
Μέγεθος Αρχείου 175 KB
Αριθμός Εγκαταστάσεων 255
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2023-08-25
Ημερομηνία Δημοσίευσης 2022-05-08
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής ccgami
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.min.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*",
        "http:\/\/localhost:5000\/*"
    ],
    "icons": {
        "16": "image\/logo\/16x16.png",
        "24": "image\/logo\/24x24.png",
        "32": "image\/logo\/32x32.png",
        "48": "image\/logo\/48x48.png",
        "64": "image\/logo\/64x64.png",
        "128": "image\/logo\/128x128.png",
        "256": "image\/logo\/256x256.png",
        "512": "image\/logo\/512x512.png"
    },
    "action": {
        "default_icon": {
            "16": "image\/logo-gray\/16x16.png",
            "24": "image\/logo-gray\/24x24.png",
            "32": "image\/logo-gray\/32x32.png",
            "48": "image\/logo-gray\/48x48.png",
            "64": "image\/logo-gray\/64x64.png",
            "128": "image\/logo-gray\/128x128.png",
            "256": "image\/logo-gray\/256x256.png",
            "512": "image\/logo-gray\/512x512.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "main.min.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "css\/*"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "image\/*"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "content.min.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "js": [
                "external.min.js"
            ],
            "matches": [
                "http:\/\/localhost:5000\/*"
            ]
        }
    ]
}