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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } |