Anki Jiten (BETA)

This extension captures and converts highlighted Japanese text into an Anki deck for English speakers.

Anki Jiten (BETA)คืออะไร?

Anki Jiten (BETA) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension captures and converts highlighted Japanese text into an Anki deck for English speakers."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Anki Jiten (BETA)

ดาวน์โหลดไฟล์ส่วนขยาย Anki Jiten (BETA) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you are interested in creating Anki cards from content you find on Japanese websites (ebooks, news sites), then this is the app for you. Go to any Japanese language website and highlight text that you don't know and would like to learn, then click the icon to activate the plugin. All the words you've highlighted will be translated and put into an Anki deck containing the kanji, kana and definition (based on the EDICT dictionary file).

Right now, the app is in BETA, so some definitions might be off. The code is open source can be found at: https://github.com/Munksey/anki-jiten. Any contributions/suggestions are welcome.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Anki Jiten (BETA) Anki Jiten (BETA)
ID ffglkflcahomdbijcjdkhckmjcckjkdg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/anki-jiten-beta/ffglkflcahomdbijcjdkhckmjcckjkdg
คำอธิบาย This extension captures and converts highlighted Japanese text into an Anki deck for English speakers.
ขนาดไฟล์ 5.17 MB
จำนวนการติดตั้ง 248
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2013-09-02
วันที่เผยแพร่ 2013-09-02
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anki Jiten (BETA)",
    "description": "This extension captures and converts highlighted Japanese text into an Anki deck for English speakers.",
    "version": "0.1",
    "background": {
        "scripts": [
            "dictionary.js",
            "translator.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Convert to Anki Deck",
        "default_icon": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "cleanslate.css",
                "style.css"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "mustache.min.js",
                "ui.js",
                "front.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "loader.gif"
    ],
    "permissions": [
        "activeTab"
    ]
}