Anki Jiten (BETA)
This extension captures and converts highlighted Japanese text into an Anki deck for English speakers.
什麼是Anki Jiten (BETA)?
Anki Jiten (BETA)是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension captures and converts highlighted Japanese text into an Anki deck for English speakers.”。
擴展截圖
下載Anki Jiten (BETA)擴展crx文件
下載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) |
ID | ffglkflcahomdbijcjdkhckmjcckjkdg |
官方網址 | 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" ] } |