Anki chrome highlighter
highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed
Anki chrome highlighter란 무엇입니까?
Anki chrome highlighter은(는) mhg1rjm3ntleriag에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed"입니다.
확장 프로그램 스크린샷
Anki chrome highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to add cloze notes into anki by selecting text and clicking the menu that comes up. And after a cloze has been added it will highlight the text in the article. By clicking the favicon next to the address bar the plugin will go to the next article that have notes. Requires AnkiConnect for anki https://ankiweb.net/shared/info/2055492159 Changelog: 0.0.0.2 + You can now select which deck to save your cards to in the create cloze dialog box. + Fixed a bug where the css styling of the main page would make the dialog box become unusable +Restyled the createcloze dialog 0.0.0.1 Initial release
확장 프로그램 기본 정보
이름 | |
ID | gangkbilpgbfmkhkgpnbmdopncckmlkm |
공식 URL | https://chrome.google.com/webstore/detail/anki-chrome-highlighter/gangkbilpgbfmkhkgpnbmdopncckmlkm |
설명 | highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed |
파일 크기 | 21.7 KB |
설치 횟수 | 102 |
현재 버전 | 0.0.0.2 |
최근 업데이트 | 2019-01-26 |
출시 날짜 | 2019-01-22 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | mhg1rjm3ntleriag |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Anki chrome highlighter", "description": "highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed", "version": "0.0.0.2", "manifest_version": 2, "options_page": "Options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "MainScript.js" ], "css": [ "Highlighting.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "IncrementalReadingScheduler.js" ], "persistent": false }, "browser_action": [], "permissions": [ "activeTab", "storage" ] } |