Youtube2Anki

Convert YouTube Transcripts to Anki cards

Youtube2Anki là gì?

Youtube2Anki là một tiện ích mở rộng Chrome được phát triển bởi dobladov, và tính năng chính của nó là "Convert YouTube Transcripts to Anki cards".

Ả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 Youtube2Anki

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

                        Downloads the transcript of a YouTube video to a CSV or send it directly to Anki as a new deck, using the original audio/video of the current sentence and without having to download the original media.

Instructions -> https://github.com/dobladov/youtube2Anki#send-to-anki-ankiconnect                    

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

Tên Youtube2Anki Youtube2Anki
ID boebbbjmbikafafhoelhdjeocceddngi
URL Chính Thức https://chromewebstore.google.com/detail/youtube2anki/boebbbjmbikafafhoelhdjeocceddngi
Mô tả Convert YouTube Transcripts to Anki cards
Kích Thước Tệp 70.84 KB
Số Lần Cài Đặt 1,112
Phiên Bản Hiện Tại 1.4.0
Cập Nhật Lần Cuối 2022-08-14
Ngày Phát Hành 2019-06-30
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển dobladov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dobladov/youtube2Anki
URL Trang Trợ Giúp https://github.com/dobladov/youtube2Anki/issues
Ngôn Ngữ Được Hỗ Trợ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.4.0",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "author": "Daniel Doblado",
    "homepage_url": "https:\/\/github.com\/dobladov\/youtube2Anki",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png"
    },
    "action": {
        "browser_style": true,
        "default_icon": "icons\/icon48.png",
        "default_title": "__MSG_exportTitle__",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "youtube2Anki.js"
            ],
            "run_at": "document_start"
        }
    ]
}