Arch Chinese Scraper

Pull character and word information from an archchinese webpage into a format suitable for use with Anki.

Arch Chinese Scraperとは何ですか?

Arch Chinese Scraperはarchchinesescraperによって開発されたChromeの拡張機能で、その主な機能は「Pull character and word information from an archchinese webpage into a format suitable for use with Anki.」です。

拡張機能のスクリーンショット

screenshot

Arch Chinese Scraper拡張機能のCRXファイルをダウンロード

Arch Chinese Scraper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is an extension to allow Chinese language learners to more efficiently create Anki decks, or to otherwise to make their character and word learning more efficient. When at a character page in archchinese.com, this extension enables the user to scrape the character and words on the page, which are copied to the system clipboard in a format suitable for importing into Anki.

Both the traditional and simplified characters are copied when both are available, but please note that when there is not a one-to-one correspondence between traditional and simplified character, as with 复/復/複, you must manually add/edit the character definitions.

[https://gist.github.com/Khouderchah-Alex/ebfc75ddbac177d0aef189da19b18920](This script) can be used such that words will only be added to a file when all of the characters are known:

The source code for this extension is available at:
https://github.com/Khouderchah-Alex/ArchChinese-Scraper                    

拡張機能の基本情報

名前 Arch Chinese Scraper Arch Chinese Scraper
ID llkdlmohpnemkfkakmcmfajeogfkkhdm
公式URL https://chromewebstore.google.com/detail/arch-chinese-scraper/llkdlmohpnemkfkakmcmfajeogfkkhdm
説明 Pull character and word information from an archchinese webpage into a format suitable for use with Anki.
ファイルサイズ 5.31 KB
インストール数 34
現在のバージョン 0.0.1
最終更新日 2021-10-06
公開日 2019-01-21
開発者 archchinesescraper
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Khouderchah-Alex/ArchChinese-Scraper
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Arch Chinese Scraper",
    "version": "0.0.1",
    "description": "Pull character and word information from an archchinese webpage into a format suitable for use with Anki.",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "scrape-words": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            },
            "description": "Scrape words"
        }
    },
    "manifest_version": 2
}