Youtube2Anki

Convert YouTube Transcripts to Anki cards

Was ist Youtube2Anki?

Youtube2Anki ist eine Chrome-Erweiterung, die von dobladov entwickelt wurde, und ihr Hauptmerkmal ist "Convert YouTube Transcripts to Anki cards".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Youtube2Anki-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube2Anki-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Youtube2Anki Youtube2Anki
ID boebbbjmbikafafhoelhdjeocceddngi
Offizielle URL https://chromewebstore.google.com/detail/youtube2anki/boebbbjmbikafafhoelhdjeocceddngi
Beschreibung Convert YouTube Transcripts to Anki cards
Dateigröße 70.84 KB
Installationsanzahl 1,112
Aktuelle Version 1.4.0
Letztes Update 2022-08-14
Veröffentlichungsdatum 2019-06-30
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler dobladov
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dobladov/youtube2Anki
Hilfeseite URL https://github.com/dobladov/youtube2Anki/issues
Unterstützte Sprachen 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"
        }
    ]
}