LongBeìng Dictionary

LongBeìng Dictionary

LongBeìng Dictionaryคืออะไร?

LongBeìng Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raktai และคุณลักษณะหลักของมันคือ "LongBeìng Dictionary"

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

screenshot
screenshot

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

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

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

                        ส่วนขยาย "ลองเบิ่ง" ได้รับแรงบันดาลใจมาจากส่วนขยาย Longdo Dictionary [https://chrome.google.com/webstore/detail/longdo-dictionary/nlimgpifeghlfefnpnajahjkagaedakh] แต่เห็นว่าไม่ได้อัพเดตมานานแล้ว ตอนนี้การแสดงผลมีปัญหาเส้นตารางหายไป และการใช้งานกับหน้าจอขนาดใหญ่ป๊อปอัพเปิดขึ้นมาไปอยู่ริมขอบจอด้านขวาซึ่งบางทีไกลมากกับหน้าต่างโครมที่เปิดอยู่

"ลองเบิ่ง" นั้นไม่ได้เก็บข้อมูลพจนานุกรมไว้เอง เป็นส่วนขยายที่ช่วยเปิดเว็บ https://dict.longdo.com ให้เท่านั้น การแสดงโฆษณาเป็นของเว็บ https://dict.longdo.com/ ผู้ให้บริการพจนานุกรมออนไลน์

ผู้สนใจโค้ดสามารถโหลดได้ที่ https://github.com/raktai/LongBeing                    

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

ชื่อ LongBeìng Dictionary LongBeìng Dictionary
ID behohpllkjlcgmdicpelnmeacpbodfmi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/longbe%C3%ACng-dictionary/behohpllkjlcgmdicpelnmeacpbodfmi
คำอธิบาย LongBeìng Dictionary
ขนาดไฟล์ 12.39 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2021-06-05
วันที่เผยแพร่ 2021-06-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา raktai
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/raktai/LongBeing
ภาษาที่รองรับ th
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LongBe\u00ecng Dictionary",
    "version": "0.0.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "description": "LongBe\u00ecng Dictionary",
    "icons": {
        "16": "icon.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "https:\/\/dict.longdo.com\/*",
        "contextMenus",
        "tabs",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/dict.longdo.com\/mobile\/?search=*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}