Instant Thesaurus

Find synonyms at the click of a button

Vad är Instant Thesaurus?

Instant Thesaurus är en Chrome-tillägg utvecklad av jeremy.s.sutton, och dess huvudfunktion är "Find synonyms at the click of a button".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Instant Thesaurus-förlängningens CRX-fil

Ladda ner Instant Thesaurus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Instant Thesaurus Instant Thesaurus
ID jambjfjiligfjpeljnkkcihooobfnllm
Officiell webbadress https://chrome.google.com/webstore/detail/instant-thesaurus/jambjfjiligfjpeljnkkcihooobfnllm
Beskrivning Find synonyms at the click of a button
Filstorlek 190 KB
Antal Installationer 830
Aktuell Version 0.2
Senast Uppdaterad 2013-10-20
Publiceringsdatum 2013-10-20
Betyg 2.06/5 Totalt 16 Betyg
Utvecklare jeremy.s.sutton
Betalningssätt free
Stödda Språk 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
}