WordUp
Word Up Extension
WordUp là gì?
WordUp là một tiện ích mở rộng Chrome được phát triển bởi learningmadelazy, và tính năng chính của nó là "Word Up Extension".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WordUp
Tải xuống các tệp mở rộng WordUp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WordUp |
ID | ghjjpmcbdidjlmghhfmphbjllkhmaaof |
URL Chính Thức | https://chromewebstore.google.com/detail/wordup/ghjjpmcbdidjlmghhfmphbjllkhmaaof |
Mô tả | Word Up Extension |
Kích Thước Tệp | 247 KB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2021-02-03 |
Ngày Phát Hành | 2020-09-22 |
Nhà Phát Triển | learningmadelazy |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |