CaptionSpeaker

CaptionSpeaker is a chrome extension that allows you to hear subtitles in a specified language when they are set on youtube.

Cos'è CaptionSpeaker?

CaptionSpeaker è un'estensione di Chrome sviluppata da https://limura.github.io, e la sua funzione principale è "CaptionSpeaker is a chrome extension that allows you to hear subtitles in a specified language when they are set on youtube.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione CaptionSpeaker

Scarica i file di estensione CaptionSpeaker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        CaptionSpeaker is a chrome extension that allows you to hear subtitles in a specified language when they are set on youtube.

# Usage

1.Right-click the CaptionSpeaker icon to open the settings (Options) and save the appropriate speaker settings (Please be sure to do so as there is a possibility that the speech may fail in the standard setting.).
2.Open the video that you want YouTube to produce subtitles for
3.Click CaptionSpeaker icon to enable subtitle speech (If the icon is green, it is on.)
4.Start playing movie (The speech starts when the subtitles appear.)

If you want to stop the subtitle speech, you can turn it off by clicking the CaptionSpeaker icon.

When speaking, the speaker is the default setting of the browser at first. For example, in a Japanese environment, the speaker is Japanese, so if you want him to speak English, please set it on the setting page (Right-click the icon to select an option, or click the icon to select Options.).
You can also change the reading speed on the settings page.

When you change the speaker's language (Locale), you try to produce subtitles in that language (I sometimes fail.).

# Note

- CaptionSpeaker is a Chrome Extension that reads out the subtitles set for YouTube videos. It does not have the ability to translate Youtube videos. If the YouTube video does not have subtitles in the target language, it will not be spoken.

# Update History

# # Version 1.0
First release

# # Version 1.1
- Add an option to stop the previous utterance when a new utterance is made
- If the subtitle in the same language as the speech setting is default, add the option of not speaking

# # Version 1.2
- When reading is turned off, stop speaking if you are speaking.
- Addresses an issue that may cause a slight delay in reading

## Version 1.3
-Slightly changed the judgment criteria of "Subtitles in the same language as the speech setting"

## Version 1.4
-Added "Setting to read only when subtitles are displayed" setting item

## Version 1.4.2
- Fixed an issue where subtitles could not be read (November 26, 2020 JST)

## Version 1.4.3
- Fixed the problem that subtitles could not be read 

## Version 2.0.0
- Compatible with Manifest V3
- Fixed the problem of not speaking when transitioning from a channel (www.youtube.com/channel/...) or playlist (www.youtube.com/playlist?list=...) to a video page.
- Supports embedding in pages other than www.youtube.com (type that iframe captures www.youtube.com/embed ...) (Note that when you "add to queue" in youtube Not compatible with the displayed mini player)
- Added "Lower volume of original video during utterance" setting

## Verson 2.0.1 (2022/05)
- Fixed the problem of trying to speak the language of the browser's language setting side when the language setting of the browser (window.navigator.language) and the language to be read are different.

## Version 2.0.2 (2022/06)
- By going to get the next information when you couldn't get the subtitles, you reduced the possibility that you couldn't get the subtitles.

## Version 2.0.3 (2022/06)
- Fixed the problem that sometimes failed to be obtained in the part to get the next information entered in Version 2.0.2.

## Version 2.0.4 (2023/12)
- When video playback is stopped, speech will also stop (Thanks @RonnieBlade)
- ON/OFF setting of "Enable speech without time synchronization" will be added to "Options" (Thanks @billythekidz)

# Known Issues

It seems that macOS Catalina may fail to speak with a standard speaker.
You can avoid it by setting the speaker who can make a test speech on the setting page and confirm that he can actually speak.                    

Informazioni di Base sull'Estensione

Nome CaptionSpeaker CaptionSpeaker
ID infafaffjndfcflcoemolnggghgoodce
URL Ufficiale https://chromewebstore.google.com/detail/captionspeaker/infafaffjndfcflcoemolnggghgoodce
Descrizione CaptionSpeaker is a chrome extension that allows you to hear subtitles in a specified language when they are set on youtube.
Dimensione del File 46.07 KB
Conteggio Installazioni 12,564
Versione Corrente 2.0.4
Ultimo Aggiornamento 2023-12-14
Data di Pubblicazione 2020-05-22
Valutazione 4.02/5 Totale 45 Valutazioni
Sviluppatore https://limura.github.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/limura/CaptionSpeaker
Lingue Supportate en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CaptionSpeaker",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "version": "2.0.4",
    "icons": {
        "16": "icon\/Icon16.png",
        "48": "icon\/Icon48.png",
        "128": "icon\/Icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_title": "__MSG_PageActionDefaultTitle__",
        "default_icon": {
            "19": "icon\/Icon19.png",
            "24": "icon\/Icon24.png",
            "32": "icon\/Icon32.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "enableEvent": {
            "description": "__MSG_KeyboardShortcutNameEnableEvent__"
        },
        "disableEvent": {
            "description": "__MSG_KeyboardShortcutNameDisableEvent__"
        }
    }
}