Yi Translate

An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.

Hvad er Yi Translate?

Yi Translate er en Chrome-udvidelse udviklet af lyldever, og dens hovedfunktion er "An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download Yi Translate-udvidelses-CRX-fil

Download Yi Translate-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        0. Use it all over the world🌏
You can use this amazing add-on both in China Mainland (where google is banned) and Rest of the world.

1. Translate Selected Text:
You can select Text in any webpages, then you'll get its translation easily.

2. Translate a Whole Webpage:
Translate whole webpage or link into your language.

3. Translate Input:
You can input text in the add-on's popup, and get translation immediately.

4. Keyboard shortcuts support:
Translate with keyboard shortcuts.

======================

Contribute:

1. open issues to report bugs or new needed features : 
https://github.com/lyldev/yi-translate/issues/new/choose

2. clone this repo to fix bugs or add new features, then pull request : 
https://github.com/lyldev/yi-translate

3. help to localize this add-on : 
https://poeditor.com/join/project/emwUnKSv3K

======================

💖DONATE💖:

If you think this add-on is helpful, please give it a 5-star review. You can also donate to the develper to help this add-on become better.

——for people outside Mainland China:
support on Buy Me A Coffee: https://www.buymeacoffee.com/lyldev

——大陆用户请使用:
爱发电 :https://afdian.net/@lyldev                    

Grundlæggende oplysninger om udvidelsen

Navn Yi Translate Yi Translate
ID faljelicjmfoeappigahkpajbfbkimpj
Officiel URL https://chromewebstore.google.com/detail/yi-translate/faljelicjmfoeappigahkpajbfbkimpj
Beskrivelse An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.
Filstørrelse 310 KB
Antal Installationer 749
Nuværende Version 0.1.0
Senest Opdateret 2021-10-12
Udgivelsesdato 2020-06-06
Bedømmelse 3.67/5 Samlet 6 Bedømmelser
Udvikler lyldever
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/lyldev/yi-translate
Hjælpeside-URL https://github.com/lyldev/yi-translate
Understøttede Sprog 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": "0.1.0",
    "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",
            "32": "icons\/32.png",
            "16": "icons\/16.png"
        },
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/64.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__"
        }
    }
}