Youtube2Anki
Convert YouTube Transcripts to Anki cards
Wat is Youtube2Anki?
Youtube2Anki is een Chrome-extensie ontwikkeld door dobladov, en de belangrijkste functie is "Convert YouTube Transcripts to Anki cards".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube2Anki
Download Youtube2Anki-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Youtube2Anki |
ID | boebbbjmbikafafhoelhdjeocceddngi |
Officiële URL | https://chromewebstore.google.com/detail/youtube2anki/boebbbjmbikafafhoelhdjeocceddngi |
Beschrijving | Convert YouTube Transcripts to Anki cards |
Bestandsgrootte | 70.84 KB |
Aantal Installaties | 1,112 |
Huidige Versie | 1.4.0 |
Laatst Bijgewerkt | 2022-08-14 |
Publicatiedatum | 2019-06-30 |
Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | dobladov |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/dobladov/youtube2Anki |
Help Pagina-URL | https://github.com/dobladov/youtube2Anki/issues |
Ondersteunde Talen | 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" } ] } |