WordParty

WordParty plugin for Chrome.

Что такое WordParty?

WordParty - это расширение Chrome, разработанное https://word-party.com, и его основная функция - "WordParty plugin for Chrome.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения WordParty

Скачайте файлы расширений WordParty в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Integrates WordParty with other websites.

- Extension shows vocabulary statistics for every web page. Be even more aware of your vocabulary progress.

- Allows you to manage words on a page. Get a WordParty like experience even outside a reader.

- You can save a page to read later it on WordParty. It will be available even if the original article was removed.

*Plugin is under a development (it is an early beta version)                    

Основная информация о расширении

Название WordParty WordParty
ID dlholbkkclbghhipddnagkdkkcmnpgko
Официальный URL https://chromewebstore.google.com/detail/wordparty/dlholbkkclbghhipddnagkdkkcmnpgko
Описание WordParty plugin for Chrome.
Размер файла 245 KB
Количество установок 25
Текущая Версия 1.0.96
Последнее Обновление 2018-04-03
Дата публикации 2018-04-03
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://word-party.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordParty",
    "description": "WordParty plugin for Chrome.",
    "version": "1.0.96",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "resources\/*.woff"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "api_host": "https:\/\/www.word-party.com",
    "permissions": [
        "tabs",
        "identity",
        "storage",
        "activeTab",
        "http:\/\/www.word-party.com\/api\/*"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/www.word-party.com\/*"
        ]
    }
}