单词助手

单词助手

单词助手란 무엇입니까?

单词助手은(는) https://danci.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "单词助手"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

单词助手 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        浏览器查单词插件,选词后右键菜单查词,剪切板查词,遗忘曲线背单词
 特色: 
支持多个本地mdict词典
保护隐私(仅开启剪切板查词功能需要剪切板权限可选)                    

확장 프로그램 기본 정보

이름 单词助手 单词助手
ID nbcpgmaalkfmapmdljhllejeikccibjd
공식 URL https://chromewebstore.google.com/detail/%E5%8D%95%E8%AF%8D%E5%8A%A9%E6%89%8B/nbcpgmaalkfmapmdljhllejeikccibjd
설명 单词助手
파일 크기 14.91 KB
설치 횟수 21
현재 버전 1.0.1
최근 업데이트 2022-10-19
출시 날짜 2021-09-02
개발자 https://danci.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://danci.me/
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u5355\u8bcd\u52a9\u624b",
    "description": "\u5355\u8bcd\u52a9\u624b",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "clipboardRead"
    ],
    "host_permissions": [
        "https:\/\/danci.me\/"
    ],
    "icons": {
        "512": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/danci.me\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png",
        "default_title": "\u5355\u8bcd\u52a9\u624b",
        "default_popup": "popup.html"
    },
    "commands": {
        "query": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Query clipboard word",
            "global": true
        }
    }
}