Translate
Just Translate
Cos'è Translate?
Translate è un'estensione di Chrome sviluppata da DataFactory, e la sua funzione principale è "Just Translate".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Translate
Scarica i file di estensione Translate 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
This small extension provide a inline translation for selected text. It works on double click and through "Alt+T" shortcut. It powered by Yandex.Translate
Informazioni di Base sull'Estensione
Nome | |
ID | nimjhahjkembhijmhelpgjbofphamdej |
URL Ufficiale | https://chrome.google.com/webstore/detail/translate/nimjhahjkembhijmhelpgjbofphamdej |
Descrizione | Just Translate |
Dimensione del File | 28.37 KB |
Conteggio Installazioni | 213 |
Versione Corrente | 0.1.2 |
Ultimo Aggiornamento | 2015-10-12 |
Data di Pubblicazione | 2015-10-12 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | DataFactory |
Tipo di Pagamento | free |
Lingue Supportate | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Translate", "version": "0.1.2", "default_locale": "en", "description": "Just Translate", "icons": { "16": "img\/16.png", "128": "img\/128.png" }, "browser_action": { "default_icon": { "19": "img\/19.png", "38": "img\/38.png" }, "default_title": "Translate", "default_popup": "popup.html" }, "background": { "scripts": [ "app.js" ], "persistent": false }, "permissions": [ "activeTab", "contextMenus", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "translateTooltip.css" ], "js": [ "translate.js" ] } ] } |