Flashcard Dictionary

This Chrome extension enables highlight to search functionality while saving the searched words into flash cards

Flashcard Dictionaryคืออะไร?

Flashcard Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chua Wei Jie และคุณลักษณะหลักของมันคือ "This Chrome extension enables highlight to search functionality while saving the searched words into flash cards"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Have you ever encountered a new vocabulary and it is distracting for you to go to another website to search for its definition? Did you keep searching the same words over and over again hoping that you could have a tool to help you master it? 

This why I've created this Flashcard Dictionary extension. It contains three major functions. 
Highlight to search
List of searched words
Quiz

With this, I hope that your reading experience will be better and you will be able to master new words easier. Happy reading!

This project is originally written for CS50's final project. 
https://www.edx.org/course/cs50s-introduction-to-computer-science

This extension is based on Dictionary Anywhere by meetDeveloper
https://github.com/meetDeveloper/Dictionary-Anywhere

This extension also uses the Google Dictionary API by meetDeveloper
https://github.com/meetDeveloper/googleDictionaryAPI

Last but not least, the extension's icon is from iconmonstr
https://iconmonstr.com/                    

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

ชื่อ Flashcard Dictionary Flashcard Dictionary
ID mgnohlhmgmebmnaanlainjekgdoaodjb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/flashcard-dictionary/mgnohlhmgmebmnaanlainjekgdoaodjb
คำอธิบาย This Chrome extension enables highlight to search functionality while saving the searched words into flash cards
ขนาดไฟล์ 890 KB
จำนวนการติดตั้ง 104
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2020-06-03
วันที่เผยแพร่ 2020-06-03
ผู้พัฒนา Chua Wei Jie
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/chuaweijie/Flashcard-Dictionary/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flashcard Dictionary",
    "version": "0.0.0.3",
    "default_locale": "en",
    "description": "This Chrome extension enables highlight to search functionality while saving the searched words into flash cards",
    "icons": {
        "16": "views\/images\/dictionary-logo-16.png",
        "32": "views\/images\/dictionary-logo-32.png",
        "48": "views\/images\/dictionary-logo-48.png",
        "64": "views\/images\/dictionary-logo-64.png",
        "72": "views\/images\/dictionary-logo-72.png",
        "96": "views\/images\/dictionary-logo-96.png",
        "120": "views\/images\/dictionary-logo-120.png",
        "128": "icon_128.png",
        "240": "views\/images\/dictionary-logo-240.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "views\/images\/dictionary-logo-16.png",
            "32": "views\/images\/dictionary-logo-32.png",
            "48": "views\/images\/dictionary-logo-48.png",
            "64": "views\/images\/dictionary-logo-64.png",
            "72": "views\/images\/dictionary-logo-72.png",
            "96": "views\/images\/dictionary-logo-96.png",
            "120": "views\/images\/dictionary-logo-120.png",
            "240": "views\/images\/dictionary-logo-240.png"
        },
        "default_title": "Flashcard Dictionary",
        "default_popup": "views\/popup.html"
    },
    "background": {
        "scripts": [
            "controllers\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "controllers\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/*.dictionaryapi.dev\/",
        "tabs"
    ]
}