Better Wiktionary

Makes it more convenient to use Wiktionary.

什麼是Better Wiktionary?

Better Wiktionary是由Sin Jeong-hun開發的Chrome擴展程式,該擴展的主要功能是“Makes it more convenient to use Wiktionary.”。

擴展截圖

screenshot
screenshot

下載Better Wiktionary擴展crx文件

下載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
官方網址 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}"
        }
    }
}