Arch Chinese Scraper

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

O que é Arch Chinese Scraper?

Arch Chinese Scraper é uma extensão do Chrome desenvolvida por archchinesescraper, e sua principal característica é "Pull character and word information from an archchinese webpage into a format suitable for use with Anki.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Arch Chinese Scraper

Baixe arquivos de extensão Arch Chinese Scraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Arch Chinese Scraper Arch Chinese Scraper
ID llkdlmohpnemkfkakmcmfajeogfkkhdm
URL Oficial https://chromewebstore.google.com/detail/arch-chinese-scraper/llkdlmohpnemkfkakmcmfajeogfkkhdm
Descrição Pull character and word information from an archchinese webpage into a format suitable for use with Anki.
Tamanho do Arquivo 5.31 KB
Contagem de Instalações 34
Versão Atual 0.0.1
Última Atualização 2021-10-06
Data de Publicação 2019-01-21
Desenvolvedor archchinesescraper
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Khouderchah-Alex/ArchChinese-Scraper
Idiomas Suportados 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
}