Traduction One Click

Traduction One Click -- Simple translation with just one click

Vad är Traduction One Click?

Traduction One Click är en Chrome-tillägg utvecklad av SpaceTools, och dess huvudfunktion är "Traduction One Click -- Simple translation with just one click".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Traduction One Click-förlängningens CRX-fil

Ladda ner Traduction One Click-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Simple translation with just one click
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                    

Grundläggande Information om Tillägg

Namn Traduction One Click Traduction One Click
ID mhncgbfifjnhlilpnccgbimimkjejada
Officiell webbadress https://chrome.google.com/webstore/detail/traduction-one-click/mhncgbfifjnhlilpnccgbimimkjejada
Beskrivning Traduction One Click -- Simple translation with just one click
Filstorlek 447 KB
Antal Installationer 10,000
Aktuell Version 1.1
Senast Uppdaterad 2023-02-07
Publiceringsdatum 2020-12-14
Betyg 4.63/5 Totalt 16 Betyg
Utvecklare SpaceTools
E-post [email protected]
Betalningssätt free
Stödda Språk 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": "1.1",
    "name": "Traduction One Click",
    "description": "Traduction One Click -- Simple translation with just one click",
    "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",
                "content\/jquery-3.4.1.min.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__"
        }
    }
}