WordUp
Word Up Extension
什么是WordUp?
WordUp是由learningmadelazy开发的Chrome扩展程序,该扩展的主要功能是“Word Up Extension”。
扩展截图
下载WordUp扩展crx文件
下载WordUp扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
a tool that increases a users vocabulary while simultaneously tracking metrics that relate to how frequent an individual is aware of terms they have not previously encountered 扩展基本信息
| 名称 | |
| ID | ghjjpmcbdidjlmghhfmphbjllkhmaaof |
| 官方URL | https://chromewebstore.google.com/detail/wordup/ghjjpmcbdidjlmghhfmphbjllkhmaaof |
| 简介 | Word Up Extension |
| 文件大小 | 247 KB |
| 安装次数 | 40 |
| 当前版本 | 1.3 |
| 更新时间 | 2021-02-03 |
| 上架时间 | 2020-09-22 |
| 开发者 | learningmadelazy |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WordUp",
"description": "Word Up Extension",
"version": "1.3",
"manifest_version": 2,
"omnibox": {
"keyword": "nt"
},
"icons": {
"16": "search16.png",
"32": "search32.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_icon": "ExtensionIcon.png"
},
"content_security_policy": "script-src 'self' https:\/\/www.gstatic.com; object-src 'self'",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"Html\/Toolbar.js",
"contentScript.js"
]
}
],
"web_accessible_resources": [
"Html\/Toolbar.html",
"Html\/Toolbar.css",
"Html\/ItemTemplate\/WordListItemTemplate.html",
"Html\/Graph.html",
"Html\/Graph.js",
"Popup.js"
]
} | |