Instant Thesaurus

Find synonyms at the click of a button

Hvad er Instant Thesaurus?

Instant Thesaurus er en Chrome-udvidelse udviklet af jeremy.s.sutton, og dens hovedfunktion er "Find synonyms at the click of a button".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Instant Thesaurus-udvidelses-CRX-fil

Download Instant Thesaurus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Instant Thesaurus Instant Thesaurus
ID jambjfjiligfjpeljnkkcihooobfnllm
Officiel URL https://chrome.google.com/webstore/detail/instant-thesaurus/jambjfjiligfjpeljnkkcihooobfnllm
Beskrivelse Find synonyms at the click of a button
Filstørrelse 190 KB
Antal Installationer 830
Nuværende Version 0.2
Senest Opdateret 2013-10-20
Udgivelsesdato 2013-10-20
Bedømmelse 2.06/5 Samlet 16 Bedømmelser
Udvikler jeremy.s.sutton
Betalingsmetode free
Understøttede Sprog 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
}