Anki Sentence Miner
Instantly make Anki cards with AnkiConnect by highlighting over sentences.
Anki Sentence Miner là gì?
Anki Sentence Miner là một tiện ích mở rộng Chrome được phát triển bởi asahiouda, và tính năng chính của nó là "Instantly make Anki cards with AnkiConnect by highlighting over sentences.".
Ả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 Sentence Miner
Tải xuống các tệp mở rộng Anki Sentence Miner 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
If you read books in Chrome and are tired of copying and pasting sentences into Anki for future study, then use Anki Sentence Miner to quickly add sentences and keep reading. Make sure AnkiConnect is downloaded first for this extension to work. Download AnkiConnect here: https://ankiweb.net/shared/info/2055492159 or install with the add-on number 2055492159. After downloading, simply select in the popup which deck, model, and field you'd like to use for the added sentences. Then, after highlighting over the desired sentence to add, hit Command+Shift+A in macOS or Ctrl+Shift+A in any other OS.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | adbkoekamklojimmloclhopinfbhmnid |
URL Chính Thức | https://chrome.google.com/webstore/detail/anki-sentence-miner/adbkoekamklojimmloclhopinfbhmnid |
Mô tả | Instantly make Anki cards with AnkiConnect by highlighting over sentences. |
Kích Thước Tệp | 168 KB |
Số Lần Cài Đặt | 266 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2019-03-24 |
Ngày Phát Hành | 2019-03-24 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | asahiouda |
[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", "manifest_version": 2, "name": "Anki Sentence Miner", "version": "0.1", "description": "Instantly make Anki cards with AnkiConnect by highlighting over sentences.", "icons": { "16": "anki_symbol.png", "48": "anki_symbol.png", "128": "anki_symbol.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "makeCard": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Add a note of the highlighted text to Anki." } }, "browser_action": { "default_icon": { "19": "anki_symbol.png", "38": "anki_symbol.png" }, "default_title": "Anki Sentence Miner", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab" ] } |