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
电子邮箱 [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"
        }
    ]
}