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文件

下载Ankinow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}