Youtube2Anki
Convert YouTube Transcripts to Anki cards
Что такое Youtube2Anki?
Youtube2Anki - это расширение Chrome, разработанное dobladov, и его основная функция - "Convert YouTube Transcripts to Anki cards".
Снимки экрана расширения
Скачать файл CRX расширения Youtube2Anki
Скачайте файлы расширений 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 |
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" } ] } |