ユリアーモ翻訳
ウェブページをユリアーモに翻訳します。
Wat is ユリアーモ翻訳?
ユリアーモ翻訳 is een Chrome-extensie ontwikkeld door Hazuki Tachibana, en de belangrijkste functie is "ウェブページをユリアーモに翻訳します。".
Extensie Screenshots
Download het CRX-bestand van de extensie ユリアーモ翻訳
Download ユリアーモ翻訳-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
◆概要 「ユリアーモ」はアドベンチャーゲーム「ことのはアムリラート」に登場する、エスペラント語をベースとした人工言語です。 この拡張機能は Google 翻訳のエスペラント語翻訳を利用して、好きなウェブページをユリアーモに翻訳します。 ◆使い方 拡張機能をインストールすると Chrome のアドレスバー右横に "j" という文字のボタンが現れます。 翻訳したいページを開いた上でこのボタンを押すと、新しいタブが開き、ユリアーモへの翻訳が行われます。 また、Web 版 Google 翻訳のページ (https://translate.google.com) に、対応言語としてユリアーモが追加されます。 ◆謝辞など ことのはアムリラート開発元の SukeraSparo 様にお礼申し上げます。 http://sukerasparo.com/ ユリアーモのフォントは、SukeraSparo 様が公開されている Web フォントを利用させて頂いています。 http://sukerasparo.com/sp004/font.html この Chrome 拡張の作者は SukeraSparo 様とは関係ありません。この Chrome 拡張についての問い合わせを SukeraSparo 様に送らないようお願いします。 この Chrome 拡張のソースコードは以下の URL で公開しています。 https://github.com/fallthrough/juliamo-translate-extension
Basisinformatie over de Extensie
Naam | ユリアーモ翻訳 |
ID | lfbkianbbamldlolccijgpjgienikeij |
Officiële URL | https://chromewebstore.google.com/detail/%E3%83%A6%E3%83%AA%E3%82%A2%E3%83%BC%E3%83%A2%E7%BF%BB%E8%A8%B3/lfbkianbbamldlolccijgpjgienikeij |
Beschrijving | ウェブページをユリアーモに翻訳します。 |
Bestandsgrootte | 8.18 KB |
Aantal Installaties | 96 |
Huidige Versie | 1.3.0 |
Laatst Bijgewerkt | 2017-09-23 |
Publicatiedatum | 2017-09-22 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Hazuki Tachibana |
Betalingswijze | free |
Extensiewebsite | https://github.com/fallthrough/juliamo-translate-extension |
Ondersteunde Talen | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "\u30e6\u30ea\u30a2\u30fc\u30e2\u7ffb\u8a33", "description": "\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u3092\u30e6\u30ea\u30a2\u30fc\u30e2\u306b\u7ffb\u8a33\u3057\u307e\u3059\u3002", "version": "1.3.0", "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab" ], "browser_action": { "default_title": "\u30e6\u30ea\u30a2\u30fc\u30e2\u7ffb\u8a33", "default_icon": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/translate.google.com\/*", "http:\/\/translate.google.com\/*", "https:\/\/translate.googleusercontent.com\/*", "http:\/\/translate.googleusercontent.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ] } |