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.”。
擴展截圖
下載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 |
ID | llkdlmohpnemkfkakmcmfajeogfkkhdm |
官方網址 | 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 |
電子郵箱 | [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 } |