单词助手
单词助手
单词助手とは何ですか?
单词助手はhttps://danci.meによって開発されたChromeの拡張機能で、その主な機能は「单词助手」です。
拡張機能のスクリーンショット
单词助手拡張機能のCRXファイルをダウンロード
单词助手拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
浏览器查单词插件,选词后右键菜单查词,剪切板查词,遗忘曲线背单词
特色:
支持多个本地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 |
| Eメール | [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
}
}
} | |