Custom Dictionary

Store words and their definitions, and highlight them on websites

Custom Dictionaryคืออะไร?

Custom Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Riki และคุณลักษณะหลักของมันคือ "Store words and their definitions, and highlight them on websites"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This highly performant chrome extension allows you to keep track of a custom dictionary of words. Words will be highlighted on web pages, and their definitions will appear as tooltips when hovered over.                    

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

ชื่อ Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
คำอธิบาย Store words and their definitions, and highlight them on websites
ขนาดไฟล์ 44.67 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2022-05-12
วันที่เผยแพร่ 2022-04-25
ผู้พัฒนา Riki
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rikilele/custom-dict-chrome
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Dictionary",
    "version": "1.2.2",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Custom Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Store words and their definitions, and highlight them on websites",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Riki Singh Khorana",
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript\/contentScript.js"
            ],
            "css": [
                "contentScript\/contentScript.css"
            ],
            "match_about_blank": true
        }
    ],
    "offline_enabled": true,
    "options_page": "settings\/settings.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "short_name": "Custom Dict"
}