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 |
| 官方網址 | 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"
]
} | |