Youtube Subtitle Navigation

To help to navigate the video via subtitles

Youtube Subtitle Navigation là gì?

Youtube Subtitle Navigation là một tiện ích mở rộng Chrome được phát triển bởi 915522927, và tính năng chính của nó là "To help to navigate the video via subtitles".

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

screenshot

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

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

                        To show the youtube subtitles in a scroll view. And you can click the subtitle to navigate to any point of the video                    

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

Tên Youtube Subtitle Navigation Youtube Subtitle Navigation
ID mnmncjbohjbmlcjfledohhdbjgmpdgmp
URL Chính Thức https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp
Mô tả To help to navigate the video via subtitles
Kích Thước Tệp 950 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2022-06-14
Ngày Phát Hành 2022-06-14
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển 915522927
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/qq915522927/youtube-subtiltle-scroller-plugin
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Subtitle Navigation",
    "version": "0.0.0.2",
    "description": "To help to navigate the video via subtitles",
    "icons": {
        "32": "icons\/logo32.png",
        "128": "icons\/logo128.png",
        "512": "icons\/logo512.png"
    },
    "permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/foreground.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bootstrap-icons.woff",
                "bootstrap-icons.woff2"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}