Anki Sentence Miner

Instantly make Anki cards with AnkiConnect by highlighting over sentences.

Anki Sentence Miner란 무엇입니까?

Anki Sentence Miner은(는) asahiouda에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly make Anki cards with AnkiConnect by highlighting over sentences."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Anki Sentence Miner 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Anki Sentence Miner Anki Sentence Miner
ID adbkoekamklojimmloclhopinfbhmnid
공식 URL https://chrome.google.com/webstore/detail/anki-sentence-miner/adbkoekamklojimmloclhopinfbhmnid
설명 Instantly make Anki cards with AnkiConnect by highlighting over sentences.
파일 크기 168 KB
설치 횟수 266
현재 버전 0.1
최근 업데이트 2019-03-24
출시 날짜 2019-03-24
평점 1.00/5 총 1 개의 평점
개발자 asahiouda
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}