Youtube2Anki

Convert YouTube Transcripts to Anki cards

Youtube2Ankiとは何ですか?

Youtube2Ankiはdobladovによって開発されたChromeの拡張機能で、その主な機能は「Convert YouTube Transcripts to Anki cards」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Youtube2Anki拡張機能のCRXファイルをダウンロード

Youtube2Anki拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Youtube2Anki Youtube2Anki
ID boebbbjmbikafafhoelhdjeocceddngi
公式URL https://chromewebstore.google.com/detail/youtube2anki/boebbbjmbikafafhoelhdjeocceddngi
説明 Convert YouTube Transcripts to Anki cards
ファイルサイズ 70.84 KB
インストール数 1,112
現在のバージョン 1.4.0
最終更新日 2022-08-14
公開日 2019-06-30
評価 5.00/5 合計 8 レビュー
開発者 dobladov
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/dobladov/youtube2Anki
ヘルプページのURL https://github.com/dobladov/youtube2Anki/issues
対応言語 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"
        }
    ]
}