Instant Thesaurus

Find synonyms at the click of a button

Что такое Instant Thesaurus?

Instant Thesaurus - это расширение Chrome, разработанное jeremy.s.sutton, и его основная функция - "Find synonyms at the click of a button".

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

screenshot
screenshot

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

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

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

                        Ever wish that you had the convenient Microsoft Word thesaurus in your browser, able to find synonyms and antonyms of any word simply by highlighting and right-clicking it? 

Instant Thesaurus is the solution. An easy, quick, convenient thesaurus accessible by 1 click of your mouse. Simply right-click on a highlighted word on the page and a list of synonyms and antonyms will be presented for you. Select a synonym/antonym to send it to your clipboard.                    

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

Название Instant Thesaurus Instant Thesaurus
ID jambjfjiligfjpeljnkkcihooobfnllm
Официальный URL https://chrome.google.com/webstore/detail/instant-thesaurus/jambjfjiligfjpeljnkkcihooobfnllm
Описание Find synonyms at the click of a button
Размер файла 190 KB
Количество установок 830
Текущая Версия 0.2
Последнее Обновление 2013-10-20
Дата публикации 2013-10-20
Рейтинг 2.06/5 Всего 16 оценок
Разработчик jeremy.s.sutton
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instant Thesaurus",
    "description": "Find synonyms at the click of a button",
    "version": "0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "http:\/\/words.bighugelabs.com\/api\/2\/*"
    ],
    "background": {
        "scripts": [
            "thesaurus.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}