Better Wiktionary

Makes it more convenient to use Wiktionary.

Better Wiktionaryคืออะไร?

Better Wiktionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sin Jeong-hun และคุณลักษณะหลักของมันคือ "Makes it more convenient to use Wiktionary."

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

screenshot
screenshot

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

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

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

                        It currently includes the following features.

1. Context menu for word selection. Unlike other existing Wiktionary extensions, my extension reuses the tab, so if you look up multiple times, the browser will not be flooded with Wiktionary tabs.
2. Adds language switch icons next to the entry title. The entries can be customised in the settings page that can be opened by clicking the extension icon in the tool bar. This was necessary for me for learning French, because sometimes the English version for a French word entry did not have as detailed explanation as the French version. I need to switch between English and French version, and the stock way ("Languages" at the middle of the left bar) was not convenient.
3. Adds a button to toggle links. This is to make it easy to copy plain text.

More features will be added later...                    

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

ชื่อ Better Wiktionary Better Wiktionary
ID ejcknjakmamlgglhgedekeaooallnibb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/better-wiktionary/ejcknjakmamlgglhgedekeaooallnibb
คำอธิบาย Makes it more convenient to use Wiktionary.
ขนาดไฟล์ 788 KB
จำนวนการติดตั้ง 455
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2022-04-20
วันที่เผยแพร่ 2020-06-20
คะแนน 4.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Sin Jeong-hun
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Wiktionary",
    "description": "Makes it more convenient to use Wiktionary.",
    "version": "1.8",
    "author": "Sin Jeong-hun",
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/*.wiktionary.org\/wiki\/*",
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "flags\/*.svg",
        "data\/*.txt"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wiktionary.org\/wiki\/*"
            ],
            "js": [
                "settings_common.js",
                "sjhUtilities.js",
                "modifier.js"
            ],
            "css": [
                "my.css"
            ]
        }
    ],
    "browser_action": [],
    "browser_specific_settings": {
        "gecko": {
            "id": "{0ca98e91-d41b-4661-be14-fa86c2d58a2a}"
        }
    }
}