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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย archchinesescraper และคุณลักษณะหลักของมันคือ "Pull character and word information from an archchinese webpage into a format suitable for use with Anki."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Arch Chinese Scraper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
}