Translation on selection

Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.

Translation on selectionとは何ですか?

Translation on selectionはvladodriverによって開発されたChromeの拡張機能で、その主な機能は「Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.」です。

拡張機能のスクリーンショット

screenshot

Translation on selection拡張機能のCRXファイルをダウンロード

Translation on selection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Features

- translate selection as to HTML formated popup contains style same as in webpage
- create translation popup on same position as selection range when pres translate key. (T)
- click switch target to source language and back
- click and drag move the translation popup
- click width holding resize key to resize popup (Ctrl)
- click width holding freeze key to freeze and select text on popup (Shift)
- experimental Google TTS voice on supported languages width press TTS key (V)
- double click to delete popup
- any manipulated translation popup is always above, have focus and language HTML atribute.
- smooth color difference source, target language and waiting on data state.
- multiple versions target and source language on same webpage, user settings change realtime, no need refresh webpage.
- i18n messages: en, cs...

User settings on extension popup

- translate and voice KEY (A - Z)
- resize and freeze KEY (Ctrl or Shift)
- source and target languages
- reset settings
- enable/disable for any domain URL
- editing (delete) list blocked URLs                    

拡張機能の基本情報

名前 Translation on selection Translation on selection
ID eepnfgpbliefeomgndikgopjomjelbhd
公式URL https://chromewebstore.google.com/detail/translation-on-selection/eepnfgpbliefeomgndikgopjomjelbhd
説明 Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.
ファイルサイズ 32.41 KB
インストール数 806
現在のバージョン 1.0.2
最終更新日 2016-11-07
公開日 2016-11-07
評価 3.58/5 合計 12 レビュー
開発者 vladodriver
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/vladodriver/translate-selection
ヘルプページのURL https://github.com/vladodriver/translate-selection/issues
対応言語 en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Translation on selection",
    "default_locale": "en",
    "manifest_version": 2,
    "version": "1.0.2",
    "description": "Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.",
    "content_scripts": [
        {
            "js": [
                "Model.js",
                "View.js",
                "Controler.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "__MSG_icon_popup_title__",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}