Leitner Box

In the Leitner Box application, you can create new flashcards and quizzes in Markdown and LaTeX format and share them with others

Leitner Boxคืออะไร?

Leitner Box เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cena Ashoori และคุณลักษณะหลักของมันคือ "In the Leitner Box application, you can create new flashcards and quizzes in Markdown and LaTeX format and share them with others"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        In the Leitner Box application, you can create new flashcards and quizzes in Markdown and LaTeX format and share them with others. In this app, you can create your flashcards in Markdown and LaTeX format.

All the flashcards will store on your local device and you can import and export all or specific categories and share them with your friends. All the flashcards will be automatically scheduled to review them consistently.

If you add a flashcard by selecting a word in the browser, this extension will automatically save the word and its paragraph to let you review that word in the main context(this way is much better than reviewing something just by its meaning).

You can add an image in Markdown format, for this, you need to copy the image link and past it to your flashcard in markdown format like this:
![](link)
You can see some of the available commands this app supports in the screenshot section.

This is the sample code(copy inside application to see how its work):

# Here's a Heading

###### Heading level 6	

I just love **bold text**.
This is really ***very*** important text.

![](https://mdg.imgix.net/assets/images/san-juan-mountains.jpg?auto=format&fit=clip&q=40&w=1080)

```python
def sayHi():
   print("Hi")
```
$$ \frac{x}{y} $$

My favorite search engine is [Duck Duck Go](https://duckduckgo.com "The best search engine for privacy").

| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |

- First item
- Second item
- Third item
    - Indented item
    - Indented item
- Fourth item

$$ Take , \frac{x}{y} cup of sugar  $$
$$\sqrt{\frac{a}{b}}$$
$$ \sum_{i=1}^{10} t_i $$
$$ x \equiv a $$
$$ \frac{n!}{k!(n-k)!}  $$
$$ ^3/_7 $$
$$ k_{n+1} = n^2 + k_n^2 - k_{n-1} $$                    

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

ชื่อ Leitner Box Leitner Box
ID dmklcjenfgnhjooffcbocbekcpoennei
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/leitner-box/dmklcjenfgnhjooffcbocbekcpoennei
คำอธิบาย In the Leitner Box application, you can create new flashcards and quizzes in Markdown and LaTeX format and share them with others
ขนาดไฟล์ 8.41 MB
จำนวนการติดตั้ง 213
เวอร์ชันปัจจุบัน 1.4.2
อัปเดตครั้งล่าสุด 2023-01-09
วันที่เผยแพร่ 2021-09-03
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Cena Ashoori
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://cenaashoori.github.io/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leitner Box",
    "description": "In the Leitner Box application, you can create new flashcards and quizzes in Markdown and LaTeX format and share them with others",
    "version": "1.4.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "app\/background.js"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "128": "icons\/icon-128.png",
            "192": "icons\/icon-192.png",
            "512": "icons\/icon-512.png"
        }
    },
    "icons": {
        "128": "icons\/icon-128.png",
        "192": "icons\/icon-192.png",
        "512": "icons\/icon-512.png"
    },
    "options_ui": {
        "page": "index.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "app\/popup.css"
            ],
            "js": [
                "app\/popup.js",
                "app\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}