Polyglot
Enable users to use multi-language in webpages.
Что такое Polyglot?
Polyglot - это расширение Chrome, разработанное Two-way translation. Surf the Web Natively in Any Language, и его основная функция - "Enable users to use multi-language in webpages.".
Снимки экрана расширения
Скачать файл CRX расширения Polyglot
Скачайте файлы расширений Polyglot в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Surf the web natively in any language. Polyglot makes surfing the web in a foreign language just like surfing the net in your own language. Foreign language sites will be translated automatically into your native language. Plus any text inputs you make into these foreign language sites in your native language will automatically be translated into that foreign language. Now you can use the local version of Google, Ebay, Amazon or any other site whilst travelling or living overseas. Additionally non-English speakers can now make use of the vast array of the internet that is only in the English language.
Основная информация о расширении
Название | Polyglot |
ID | hdbcnodefcbojlkaobiahghecgjoiicb |
Официальный URL | https://chromewebstore.google.com/detail/polyglot/hdbcnodefcbojlkaobiahghecgjoiicb |
Описание | Enable users to use multi-language in webpages. |
Размер файла | 645 KB |
Количество установок | 752 |
Текущая Версия | 1.0 |
Последнее Обновление | 2019-03-08 |
Дата публикации | 2019-03-08 |
Рейтинг | 3.50/5 Всего 4 оценок |
Разработчик | Two-way translation. Surf the Web Natively in Any Language |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Polyglot", "description": "Enable users to use multi-language in webpages.", "version": "1.0", "icons": { "128": "images\/icon.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "permissions": [ "webRequest", "webRequestBlocking", "activeTab", "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "js\/guesslanguage\/_languageData.js", "js\/guesslanguage\/guessLanguage.js", "js\/translator.js", "js\/background.js", "js\/jquery-2.1.4.min.js", "js\/tabconfig.js", "js\/polyglot.js", "js\/headers.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/translator.js", "js\/jquery-2.1.4.min.js", "js\/content.js", "js\/tabconfig.js", "js\/polyglot.js" ], "css": [ "css\/translator.css" ], "run_at": "document_end" } ] } |