单词助手

单词助手

What is 单词助手?

单词助手 is a Chrome extension developed by https://danci.me, and its main feature is "单词助手".

Extension Screenshots

screenshot
screenshot

Download 单词助手 Extension CRX File

Download 单词助手 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name 单词助手 单词助手
ID nbcpgmaalkfmapmdljhllejeikccibjd
Official URL https://chromewebstore.google.com/detail/%E5%8D%95%E8%AF%8D%E5%8A%A9%E6%89%8B/nbcpgmaalkfmapmdljhllejeikccibjd
Description 单词助手
File Size 14.91 KB
Installation Count 21
Current Version 1.0.1
Last Updated 2022-10-19
Publish Date 2021-09-02
Developer https://danci.me
Email [email protected]
Payment Type free
Extension Website https://danci.me/
Supported Languages 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
        }
    }
}