AnkiTab

Replace new tab page with Anki flashcards

AnkiTabคืออะไร?

AnkiTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย corollari และคุณลักษณะหลักของมันคือ "Replace new tab page with Anki flashcards"

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

screenshot
screenshot

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

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

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

                        Make reviewing flashcards lighter and easier by integrating them on your browsing habits.

No more dreaded hour-long Anki sessions! AnkiTab gives you a selection of flashcards each time a new tab is opened, allowing you to mix in tiny chunks of card reviewing through the day, which leads to a more lightweight and productive learning.

Featuring built-in deck interleaving, which has been scientifically proved to improve the learning process [1][2][3][4].

The extension is totally open source and all the code is licensed under The Unlicense, which is extremely permissive. The code repository can be found at https://github.com/corollari/ankiTab.

If you find any issue/bug or want to request any feature, email me at [email protected] or create an issue on github.

[1] Pan, Steven C. The Interleaving Effect: Mixing It Up Boosts Learning. Scientific American. August 2015. Retrieved Sep 9, 2018, from https://www.scientificamerican.com/article/the-interleaving-effect-mixing-it-up-boosts-learning/
[2] Rohrer, D. Interleaving Helps Students Distinguish among Similar Concepts. Educ Psychol Rev (2012) 24: 355. https://doi.org/10.1007/s10648-012-9201-3
[3] Rohrer, D., Dedrick, R. F., & Stershic, S. (2015). Interleaved practice improves mathematics learning. Journal of Educational Psychology, 107(3), 900-908.
[4] John Dunlosky, Katherine A. Rawson, Elizabeth J. Marsh, Mitchell J. Nathan, and Daniel T. Willingham (2013). Improving Students’ Learning With Effective Learning Techniques. Psychological Science in the Public Interest (Vol 14, Issue 1, pp. 4 - 58).                    

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

ชื่อ AnkiTab AnkiTab
ID ihoaepdiibjbifnhcjoaddgcnfgjmjdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ankitab/ihoaepdiibjbifnhcjoaddgcnfgjmjdk
คำอธิบาย Replace new tab page with Anki flashcards
ขนาดไฟล์ 5.15 MB
จำนวนการติดตั้ง 1,019
เวอร์ชันปัจจุบัน 0.5.2
อัปเดตครั้งล่าสุด 2020-09-10
วันที่เผยแพร่ 2020-04-12
คะแนน 4.81/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา corollari
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/corollari/ankiTab
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AnkiTab",
    "version": "0.5.2",
    "description": "Replace new tab page with Anki flashcards",
    "manifest_version": 2,
    "incognito": "split",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_title": "AnkiTab"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "http:\/\/localhost:8765\/"
    ],
    "chrome_url_overrides": {
        "newtab": "app\/index.html"
    },
    "options_page": "options\/index.html",
    "sandbox": {
        "pages": [
            "app\/sandbox.html",
            "app\/js\/sandbox.js"
        ]
    }
}