Find and replace for YouTube Subtitles

Fix misspelled words in YouTube transcripts with a single click!

Find and replace for YouTube Subtitles là gì?

Find and replace for YouTube Subtitles là một tiện ích mở rộng Chrome được phát triển bởi Jérémy Mouzin, và tính năng chính của nó là "Fix misspelled words in YouTube transcripts with a single click!".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Find and replace for YouTube Subtitles

Tải xuống các tệp mở rộng Find and replace for YouTube Subtitles 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

                        Fix all misspelled words and expressions of YouTube transcripts (subtitles) right from the online YouTube editor with one single click.

Create your own personal list of misspelled words that must be replaced in your video and process them all with one click: huge time saver!

This extension works only when you are on the official online YouTube subtitle editor website.

FEATURES:
- Fix misspelled words in your entire transcript with one click
- Store a list of common misspelled words and fix all of them with one click (preprocess feature)
- Create the start of a sentence easily: click on a word, tap twice on CTRL! It will make the first letter of the word in uppercase and add a dot at the end of the previous word if needed.

KEYBOARD SHORTCUTS
- Open the extension panel with CTRL+SHIFT+F
- Click on the first word of a sentence, tap twice on CTRL to create the start of a sentence

HOW DOES IT WORKS?
1. Log yourself into YouTube
2. Open YouTube Studio
3. Select the "Subtitles" category on the left panel
4. Select the video you want to edit the subtitles from
(at this step the URL should start by https://studio.youtube.com/channel//translations or https://studio.youtube.com/video//translations)
5. Click on the "edit" or "duplicate and edit" button next to the subtitle your want to edit
6. WARNING: You MUST use the mode "edit as text" for the extension to work properly. So tap on this button in order to put the entire text of subtitles in one big block of text. That way the extension can search and replace in the whole text otherwise it will modify only a part of the text that is currently displayed in the interface.
7. You can now use this extension, enjoy!

Thanks!                    

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

Tên Find and replace for YouTube Subtitles Find and replace for YouTube Subtitles
ID idjehecnhghbndalgpfmhahnhkcfeeie
URL Chính Thức https://chromewebstore.google.com/detail/find-and-replace-for-yout/idjehecnhghbndalgpfmhahnhkcfeeie
Mô tả Fix misspelled words in YouTube transcripts with a single click!
Kích Thước Tệp 19.88 KB
Số Lần Cài Đặt 2,139
Phiên Bản Hiện Tại 2.0.4
Cập Nhật Lần Cuối 2023-12-06
Ngày Phát Hành 2020-02-20
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Jérémy Mouzin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jeremymouzin/search-replace-transcript-youtube
URL Trang Trợ Giúp https://github.com/jeremymouzin/search-replace-transcript-youtube
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Find and replace for YouTube Subtitles",
    "version": "2.0.4",
    "description": "Fix misspelled words in YouTube transcripts with a single click!",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon\/icon16.png",
            "32": "icon\/icon32.png",
            "48": "icon\/icon48.png",
            "128": "icon\/icon128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/studio.youtube.com\/channel\/*\/translations*",
                "https:\/\/studio.youtube.com\/video\/*\/translations*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "windows": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "storage"
    ],
    "manifest_version": 3
}