Reverso Extractor

Facilitate the isolation of reverso examples for the purposes of creating flashcards to be uploaded to Anki or Quizlet

Reverso Extractorคืออะไร?

Reverso Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย the.lang.dev และคุณลักษณะหลักของมันคือ "Facilitate the isolation of reverso examples for the purposes of creating flashcards to be uploaded to Anki or Quizlet"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reverso Extractor

ดาวน์โหลดไฟล์ส่วนขยาย Reverso Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        TL;DR: Create a list of Reverso Context example sentences and translations that can easily be imported into Anki or Quizlet

Note: this extension does not collect any user data. It is completely free.

1) Go to Reverso Context and search a word or phrase in the language you are learning.
2) Click the extension's icon in the Chrome extensions toolbar and run the extension by pressing the "Extract!" button in the extension's popup window (or run the extension by pressing ctrl+m). At the top of the page, you will now see a list of examples and translations in an easy-to-read format in order of increasing length. Each example/translation pair will have a checkbox next to it.
3) Check the boxes of the examples you wish to turn into flashcards and press the "Select" button below the list. The extension will save these examples until you press the "Clear Examples" button in the extension popup window.
4) Repeat steps 1-3 to save as many examples as you like. Adding new saved examples does not overwrite previously saved examples.
5) Click the "Show Examples" button in the extension popup window to view all saved examples. Each example/translation pair will be displayed on a new line separated by a vertical bar "|".
6) Use the import feature for Anki or Quizlet to import the examples you selected (see https://docs.ankiweb.net/importing.html or https://help.quizlet.com/hc/en-us/articles/360029977151-Creating-sets-by-importing-content).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reverso Extractor Reverso Extractor
ID blcmajbegeidcjkcogiemlijkldpieom
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reverso-extractor/blcmajbegeidcjkcogiemlijkldpieom
คำอธิบาย Facilitate the isolation of reverso examples for the purposes of creating flashcards to be uploaded to Anki or Quizlet
ขนาดไฟล์ 47.37 KB
จำนวนการติดตั้ง 355
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2024-02-19
วันที่เผยแพร่ 2021-06-15
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา the.lang.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reverso Extractor",
    "description": "Facilitate the isolation of reverso examples for the purposes of creating flashcards to be uploaded to Anki or Quizlet",
    "version": "0.0.6",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/context.reverso.net\/*"
            ]
        }
    ],
    "icons": {
        "16": "ReversoExtractIcon16.png",
        "48": "ReversoExtractIcon48.png",
        "128": "ReversoExtractIcon128.png"
    },
    "permissions": [
        "storage"
    ]
}