Vocab Swap
Learn a language while browsing the internet
Что такое Vocab Swap?
Vocab Swap - это расширение Chrome, разработанное http://vocabswap.com, и его основная функция - "Learn a language while browsing the internet".
Снимки экрана расширения
Скачать файл CRX расширения Vocab Swap
Скачайте файлы расширений Vocab Swap в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Vocab Swap helps you effortlessly learn a new language while you surf the web.
Add words that you're learning, and Vocab Swap will automatically replace those words on web pages that you visit. Основная информация о расширении
| Название | |
| ID | aohlhfpmngfjpjfficefmhcpabejdkio |
| Официальный URL | https://chrome.google.com/webstore/detail/vocab-swap/aohlhfpmngfjpjfficefmhcpabejdkio |
| Описание | Learn a language while browsing the internet |
| Размер файла | 480 KB |
| Количество установок | 70 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2019-03-08 |
| Дата публикации | 2019-03-08 |
| Рейтинг | 4.25/5 Всего 4 оценок |
| Разработчик | http://vocabswap.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://vocabswap.com |
| URL страницы помощи | https://vocabswap.com |
| URL страницы политики конфиденциальности | https://vocabswap.com |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Vocab Swap",
"version": "1.1",
"description": "Learn a language while browsing the internet",
"manifest_version": 2,
"permissions": [
"declarativeContent",
"*:\/\/*\/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_idle",
"js": [
"content-scripts\/libs\/findAndReplaceDOMText.js",
"content-scripts\/content.js"
]
}
],
"background": {
"scripts": [
"dist\/background.bundle.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup\/popup.html"
}
} | |