Quick Translate

This extension provides quick translation of selected texts

Quick Translateとは何ですか?

Quick Translateはrisperdalによって開発されたChromeの拡張機能で、その主な機能は「This extension provides quick translation of selected texts」です。

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

screenshot
screenshot
screenshot
screenshot

Quick Translate拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Important notes: 
- The shortcut for in page translate is shift button.
- The default shortcut for browseraction is CTRL + Q (you can change that later on "chrome://extensions/configureCommands")
- If there were opened tabs before you install the extension, you must refresh those tabs in order to activate extension.

Supports over 50 languages

This extensions allows you to translate the text selection using Google Translate whenever you want.

When the extension is installed select some text from a website, then press "shift" button to show translation.

This extension is lightweight and does what it says. Translates texts quickly.

No messy options.

There is two options in options page. One for source language, and another for destination language.

You just have to set the destination language and feel free to use it.

There is another option which can you use to force translation source language.
Changing source language from auto detect to something is not recommended.

------2.5-----
bugfix, background page converted persistent
------2.3-----
New feature : memorize words.
------2.0-----
Option to keyboard shortcuts on inputs (textarea, input). Defaults to true
------1.9-----
added text to speech for spelling
------1.8-----
added ctrl+q shortcut for browser action
------1.7-----
added browser action button
------1.5-----
bugfix about options
------1.4-----
improved content html
------1.3-----
positioning improved
------1.2-----
positioning bugfix                    

拡張機能の基本情報

名前 Quick Translate Quick Translate
ID gobpkdmjnhpopmpddhmhmbhkiienpfdo
公式URL https://chromewebstore.google.com/detail/quick-translate/gobpkdmjnhpopmpddhmhmbhkiienpfdo
説明 This extension provides quick translation of selected texts
ファイルサイズ 66.95 KB
インストール数 33,098
現在のバージョン 2.5
最終更新日 2015-08-10
公開日 2015-08-10
評価 3.68/5 合計 78 レビュー
開発者 risperdal
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Translate",
    "author": "As\u0131m TA\u015e",
    "description": "This extension provides quick translation of selected texts",
    "version": "2.5",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/translate_popup.css"
            ],
            "js": [
                "js\/common\/common.js",
                "js\/common\/jquery-2.1.4.min.js",
                "js\/common\/jquery.draggable.js",
                "js\/common\/languages.js",
                "js\/contentscript\/reminderhelper.js",
                "js\/contentscript\/translate.js",
                "js\/contentscript\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/common\/common.js",
            "js\/background\/reminder.js",
            "js\/background\/googlespeak.js",
            "js\/background\/background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "icons\/*",
        "css\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "Quick Translate",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/translate.google.com\/",
        "https:\/\/translate.google.com\/",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Q"
            }
        }
    }
}