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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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}"
        }
    }
}