Instant Thesaurus

Find synonyms at the click of a button

¿Qué es Instant Thesaurus?

Instant Thesaurus es una extensión de Chrome desarrollada por jeremy.s.sutton, y su función principal es "Find synonyms at the click of a button".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Instant Thesaurus

Descarga archivos de extensión Instant Thesaurus en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Instant Thesaurus Instant Thesaurus
ID jambjfjiligfjpeljnkkcihooobfnllm
URL Oficial https://chrome.google.com/webstore/detail/instant-thesaurus/jambjfjiligfjpeljnkkcihooobfnllm
Descripción Find synonyms at the click of a button
Tamaño del Archivo 190 KB
Cantidad de Instalaciones 830
Versión Actual 0.2
Última Actualización 2013-10-20
Fecha de Publicación 2013-10-20
Calificación 2.06/5 Total de 16 Calificaciones
Desarrollador jeremy.s.sutton
Tipo de Pago free
Idiomas Soportados 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
}