Translate To English...

Adds a context menu to allow you to send the highlighted text to the Microsoft Translator API

Vad är Translate To English...?

Translate To English... är en Chrome-tillägg utvecklad av Brave Location, och dess huvudfunktion är "Adds a context menu to allow you to send the highlighted text to the Microsoft Translator API".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Translate To English...-förlängningens CRX-fil

Ladda ner Translate To English...-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 extension simply adds a context menu to allow you to send the highlighted text to the Microsoft Translator API and get it translated into English.

Also note that the source code for this simple application can be found on GitHub at https://github.com/bravelocation/BingTranslateChromeExtension                    

Grundläggande Information om Tillägg

Namn Translate To English... Translate To English...
ID hogdcbncicoifbkfdofpejkkckgkbjig
Officiell webbadress https://chrome.google.com/webstore/detail/translate-to-english/hogdcbncicoifbkfdofpejkkckgkbjig
Beskrivning Adds a context menu to allow you to send the highlighted text to the Microsoft Translator API
Filstorlek 326 KB
Antal Installationer 16,252
Aktuell Version 1.3
Senast Uppdaterad 2019-01-13
Publiceringsdatum 2019-01-13
Betyg 3.94/5 Totalt 68 Betyg
Utvecklare Brave Location
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.bravelocation.com
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Translate To English...",
    "description": "Adds a context menu to allow you to send the highlighted text to the Microsoft Translator API",
    "version": "1.3",
    "manifest_version": 2,
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "translate16.png",
        "48": "translate48.png",
        "128": "translate128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/api.microsofttranslator.com; object-src 'self'",
    "background": {
        "scripts": [
            "translatescript.js"
        ]
    }
}