Youtube2Anki

Convert YouTube Transcripts to Anki cards

Youtube2Ankiคืออะไร?

Youtube2Anki เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dobladov และคุณลักษณะหลักของมันคือ "Convert YouTube Transcripts to Anki cards"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
        }
    ]
}