Simple Translate

Quickly translate selected or typed text on web pages. Supports Google Translate and DeepL API.

什麼是Simple Translate?

Simple Translate是由Sienori開發的Chrome擴展程式,該擴展的主要功能是“Quickly translate selected or typed text on web pages. Supports Google Translate and DeepL API.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Simple Translate擴展crx文件

下載Simple Translate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        When you select text, the translation button pops up and the translation is displayed instantly.
If you enable "Do not display the button if translation is not required" option, you will not get frustrated by the button appearing when it is not necessary.

In the toolbar popup, translate the input text in real time.
If you enable "Automatically switch to the second language" option, you can do : When English is input, it is translated into Japanese, and when Japanese is input, it is translated into English.

You can also translate from the context menu.
You can select "Translate this page", "Translate selected text", and "Translate selected link" from the menu on the page or tab.

Supports Google Translate and DeepL API.

Firefox version: https://addons.mozilla.org/en/firefox/addon/simple-translate/
Edge version: https://microsoftedge.microsoft.com/addons/detail/cllnohpbfenopiakdcjmjcbaeapmkcdl                    

擴展基本資訊

名稱 Simple Translate Simple Translate
ID ibplnjkanclpjokhdolnendpplpjiace
官方網址 https://chromewebstore.google.com/detail/simple-translate/ibplnjkanclpjokhdolnendpplpjiace
簡介 Quickly translate selected or typed text on web pages. Supports Google Translate and DeepL API.
檔案大小 423 KB
安裝次數 128,432
目前版本 2.8.2
更新時間 2023-09-10
上架時間 2020-05-12
評分 4.56/5 共 317 次評分
開發者 Sienori
電子郵箱 [email protected]
付費類型 free
擴展官網 https://simple-translate.sienori.com
說明頁面URL https://github.com/sienori/simple-translate
支援的語言 id,de,en,fil,fr,nl,no,vi,tr,ca,da,es,it,hu,pl,ro,fi,sv,cs,el,sr,bg,ru,uk,iw,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.8.2",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "permissions": [
        "",
        "storage",
        "contextMenus"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "512": "icons\/512.png",
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "48": "icons\/48.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "512": "icons\/512.png",
            "128": "icons\/128.png",
            "64": "icons\/64.png",
            "48": "icons\/48.png",
            "38": "icons\/38.png",
            "32": "icons\/32.png",
            "19": "icons\/19.png",
            "16": "icons\/16.png"
        },
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/512.png"
    ],
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_openPopupDescription__",
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            }
        },
        "translateSelectedText": {
            "description": "__MSG_translateTextMenu__",
            "suggested_key": {
                "default": "Ctrl+Space"
            }
        },
        "translatePage": {
            "description": "__MSG_translatePageMenu__"
        }
    }
}