Ankinow

Ankinow is an extension to add words in a web page to Anki

Ankinow란 무엇입니까?

Ankinow은(는) Ryota Arai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ankinow is an extension to add words in a web page to Anki"입니다.

확장 프로그램 스크린샷

screenshot

Ankinow 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ankinow is an extension to add words in a web page to Anki.
GitHub: https://github.com/ryotarai/chrome-extension-ankinow

# Steps to use

1. Install Anki app and AnkiConnect addon beforehand.
2. Keep Anki app running.
3. Install this extension.
4. Open this extension's option page and set deck name.
5. Visit supported site and click "Add to Anki" link.

# Supported sites

## English dictionary

- [Cambridge Dictionary](https://dictionary.cambridge.org/dictionary/)

## English-Japanese dictionary

- [英辞郎 on the web](https://eow.alc.co.jp)
- [英辞郎 on the web Pro / Pro Lite](https://eowf.alc.co.jp)                    

확장 프로그램 기본 정보

이름 Ankinow Ankinow
ID jomhaklahjhfpfdimldnnfpnapicgplk
공식 URL https://chromewebstore.google.com/detail/ankinow/jomhaklahjhfpfdimldnnfpnapicgplk
설명 Ankinow is an extension to add words in a web page to Anki
파일 크기 32.03 KB
설치 횟수 107
현재 버전 0.0.3
최근 업데이트 2021-03-07
출시 날짜 2021-03-01
평점 5.00/5 총 1 개의 평점
개발자 Ryota Arai
이메일 [email protected]
결제 유형 free
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ankinow",
    "description": "Ankinow is an extension to add words in a web page to Anki",
    "version": "0.0.3",
    "action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/127.0.0.1:8765\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/eow.alc.co.jp\/*"
            ],
            "js": [
                "contentScriptEow.js"
            ]
        },
        {
            "matches": [
                "https:\/\/eowf.alc.co.jp\/*"
            ],
            "js": [
                "contentScriptEowf.js"
            ]
        },
        {
            "matches": [
                "https:\/\/dictionary.cambridge.org\/*"
            ],
            "js": [
                "contentScriptCambridge.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    }
}