Upword
Increase your vocabulary with this simple extension
Что такое Upword?
Upword - это расширение Chrome, разработанное Unknown, и его основная функция - "Increase your vocabulary with this simple extension".
Снимки экрана расширения
Скачать файл CRX расширения Upword
Скачайте файлы расширений Upword в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Upword is a Chrome Extension for Gmail that allows user to quickly replace words with their synonyms. Upword can also be configured using a hotkey (in development).
Основная информация о расширении
Название | Upword |
ID | caccnpmojcgaglgnmbchfodecmfkcjkl |
Официальный URL | https://chromewebstore.google.com/detail/upword/caccnpmojcgaglgnmbchfodecmfkcjkl |
Описание | Increase your vocabulary with this simple extension |
Размер файла | 885 KB |
Количество установок | 110 |
Текущая Версия | 0.1.0.1 |
Последнее Обновление | 2017-03-14 |
Дата публикации | 2017-03-14 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/winstonjz/Upword |
URL страницы помощи | https://github.com/winstonjz/Upword |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Upword", "description": "Increase your vocabulary with this simple extension", "version": "0.1.0.1", "background": { "scripts": [ ".\/event\/event.js" ] }, "browser_action": { "default_title": "Upword", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "content\/content.css" ], "js": [ ".\/content\/content.js" ] } ], "icons": { "16": "docs\/icons\/16.png", "48": "docs\/icons\/48.png", "128": "docs\/icons\/128.png" }, "permissions": [ "tabs", "activeTab", "*:\/\/mail.google.com\/*", "storage", "http:\/\/fonts.googleapis.com\/", "https:\/\/fonts.googleapis.com\/", "contextMenus" ] } |