Auto-Subtitle

Using speech recognition and machine translation to generate subtitles for videos. Help you overcome language barriers.

Auto-Subtitle là gì?

Auto-Subtitle là một tiện ích mở rộng Chrome được phát triển bởi http://auto-subtitle.com, và tính năng chính của nó là "Using speech recognition and machine translation to generate subtitles for videos. Help you overcome language barriers.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto-Subtitle

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

                        Auto-Subtitle browser extension, which can add subtitles to live broadcast, on-demand, video chat, and video conference on web pages.
 
 It uses AI technology to add subtitles to videos, and can translate the subtitle into other languages. But the video will be delayed for more than ten seconds.
 
If your hearing is diminishing.
If you are a person who uses sign language.
If you want to see a video from another country, but do not understand the language of that country.
This extension can all help you.
 
This extension needs to set up Google Cloud speech to text API or Amazon Cloud transcribe API. They will provide some free quotas, and need charge after the quota is used up.
 
 
Q:What should I do if there is no icon in the top left corner of the video?
A:Click the button on the menu bar of the browser, the icon will display.


Source Code: https://github.com/sunjizheng/auto-subtitle                    

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

Tên Auto-Subtitle Auto-Subtitle
ID kolkdfgnmjcfnibdmoelndkmijbkpphl
URL Chính Thức https://chrome.google.com/webstore/detail/auto-subtitle/kolkdfgnmjcfnibdmoelndkmijbkpphl
Mô tả Using speech recognition and machine translation to generate subtitles for videos. Help you overcome language barriers.
Kích Thước Tệp 1.05 MB
Số Lần Cài Đặt 21,429
Phiên Bản Hiện Tại 0.4.3
Cập Nhật Lần Cuối 2022-07-14
Ngày Phát Hành 2020-05-09
Đánh Giá 1.62/5 Tổng số 37 Đánh Giá
Nhà Phát Triển http://auto-subtitle.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.auto-subtitle.com
URL Trang Trợ Giúp https://www.auto-subtitle.com/faq/
Ngôn Ngữ Được Hỗ Trợ id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto-Subtitle",
    "description": "__MSG_extensionDescription__",
    "version": "0.4.3",
    "manifest_version": 3,
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/autosubx16.png",
            "24": "icons\/autosubx24.png",
            "32": "icons\/autosubx32.png",
            "48": "icons\/autosubx48.png",
            "64": "icons\/autosubx64.png"
        },
        "default_title": "__MSG_clickLeftSideButton__"
    },
    "icons": {
        "16": "icons\/autosubx16.png",
        "24": "icons\/autosubx24.png",
        "32": "icons\/autosubx32.png",
        "48": "icons\/autosubx48.png",
        "64": "icons\/autosubx64.png"
    },
    "author": "[email protected]",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "__MSG_clickLeftSideButton__"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "homepage_url": "https:\/\/www.auto-subtitle.com",
    "minimum_chrome_version": "88",
    "options_ui": {
        "page": "options_ui.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "*.css",
                "icons\/*.png",
                "images\/*.png",
                "images\/*.svg",
                "jquery-3.4.1.min.js",
                "jquery-ui.min.js",
                "notify.js",
                "notify-metro.js",
                "video_player.html",
                "video_player.js",
                "aws-transcribe-worker.js",
                "aws-translate-worker.js",
                "gcp-speech-to-text-worker.js",
                "gcp-translate-worker.js",
                "hideShowPassword.min.js",
                "video-js.min.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}