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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pull character and word information from an archchinese webpage into a format suitable for use with Anki."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Arch Chinese Scraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}