Anki chrome highlighter
highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed
Anki chrome highlighter là gì?
Anki chrome highlighter là một tiện ích mở rộng Chrome được phát triển bởi mhg1rjm3ntleriag, và tính năng chính của nó là "highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Anki chrome highlighter
Tải xuống các tệp mở rộng Anki chrome highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gangkbilpgbfmkhkgpnbmdopncckmlkm |
URL Chính Thức | https://chrome.google.com/webstore/detail/anki-chrome-highlighter/gangkbilpgbfmkhkgpnbmdopncckmlkm |
Mô tả | highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed |
Kích Thước Tệp | 21.7 KB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 0.0.0.2 |
Cập Nhật Lần Cuối | 2019-01-26 |
Ngày Phát Hành | 2019-01-22 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | mhg1rjm3ntleriag |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |