WordUp
Word Up Extension
Что такое WordUp?
WordUp - это расширение Chrome, разработанное learningmadelazy, и его основная функция - "Word Up Extension".
Снимки экрана расширения
Скачать файл CRX расширения WordUp
Скачайте файлы расширений 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"
]
} | |