Instant Thesaurus

Find synonyms at the click of a button

Cos'è Instant Thesaurus?

Instant Thesaurus è un'estensione di Chrome sviluppata da jeremy.s.sutton, e la sua funzione principale è "Find synonyms at the click of a button".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Instant Thesaurus

Scarica i file di estensione Instant Thesaurus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Instant Thesaurus Instant Thesaurus
ID jambjfjiligfjpeljnkkcihooobfnllm
URL Ufficiale https://chrome.google.com/webstore/detail/instant-thesaurus/jambjfjiligfjpeljnkkcihooobfnllm
Descrizione Find synonyms at the click of a button
Dimensione del File 190 KB
Conteggio Installazioni 830
Versione Corrente 0.2
Ultimo Aggiornamento 2013-10-20
Data di Pubblicazione 2013-10-20
Valutazione 2.06/5 Totale 16 Valutazioni
Sviluppatore jeremy.s.sutton
Tipo di Pagamento free
Lingue Supportate 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
}