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ファイルをダウンロード
Anki chrome highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |