LEO Translator

This extension allows you to show the LEO translation of selected text on any website by simply rightcklicking it.

Vad är LEO Translator?

LEO Translator är en Chrome-tillägg utvecklad av https://www.timodenk.com, och dess huvudfunktion är "This extension allows you to show the LEO translation of selected text on any website by simply rightcklicking it.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner LEO Translator-förlängningens CRX-fil

Ladda ner LEO Translator-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

                        This Chrome extension adds an entry to the right-click menu of any text on any website. Clicking this new row opens the translation service LEO (http://www.leo.org/) in a new tab and shows the translation of the selected text.                    

Grundläggande Information om Tillägg

Namn LEO Translator LEO Translator
ID keabcchkbodcioapmkmfbkfcjgjblcao
Officiell webbadress https://chromewebstore.google.com/detail/leo-translator/keabcchkbodcioapmkmfbkfcjgjblcao
Beskrivning This extension allows you to show the LEO translation of selected text on any website by simply rightcklicking it.
Filstorlek 53.91 KB
Antal Installationer 498
Aktuell Version 1.0
Senast Uppdaterad 2016-07-09
Publiceringsdatum 2016-07-09
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare https://www.timodenk.com
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LEO Translator",
    "description": "This extension allows you to show the LEO translation of selected text on any website by simply rightcklicking it.",
    "version": "1.0",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}