Type2Learn

Learn by typing the webpage text in the browser itself!

Type2Learnคืออะไร?

Type2Learn เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Raghav Sethi และคุณลักษณะหลักของมันคือ "Learn by typing the webpage text in the browser itself!"

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

screenshot

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

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

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

                        Ever happened that you are unable to concentrate and read the same line again and again? Or bored of typing random text on the typing tests? Try this extension now! Read the text by typing it on the webpage itself. You can monitor your speed, errors you make, and accuracy in real-time!

Steps to use the extension:
1) Select a paragraph by clicking on it or selecting any word from it
2) Click on the extension icon in the toolbar. A popup will appear.
3) Click on the button - Prepare Text. You should see the first letter of the paragraph highlighted.
4) Start typing from the beginning of the selected paragraph.

PS: this extension version currently works on the pages in which the text selected is in paragraph HTML tag                    

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

ชื่อ Type2Learn Type2Learn
ID fhaenfmnpmhafnbamailokcjjbpmehig
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/type2learn/fhaenfmnpmhafnbamailokcjjbpmehig
คำอธิบาย Learn by typing the webpage text in the browser itself!
ขนาดไฟล์ 2.69 MB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2022-03-24
วันที่เผยแพร่ 2022-02-28
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Raghav Sethi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rghv96.github.io/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Type2Learn",
    "description": "Learn by typing the webpage text in the browser itself!",
    "version": "0.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "my-styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Type2Learn"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/rcd16.png",
            "32": "\/images\/rcd32.png",
            "48": "\/images\/rcd48.png",
            "128": "\/images\/rcd128.png"
        }
    },
    "icons": {
        "16": "\/images\/rcd16.png",
        "32": "\/images\/rcd32.png",
        "48": "\/images\/rcd48.png",
        "128": "\/images\/rcd128.png"
    }
}