Appsheet Translate

Translate appsheet.com to any language

Co to jest Appsheet Translate?

Appsheet Translate to rozszerzenie Chrome opracowane przez https://aiassistant.online, a jego główną funkcją jest „Translate appsheet.com to any language”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Appsheet Translate

Pobierz pliki rozszerzeń Appsheet Translate w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Boost productivity and clear the clutter
 
Full translation of the Appsheet interface into one of the languages of more than 100 languages of the world. Adaptation of the Appsheet interface to the translation text.
Translation of errors, Appsheet hints during application development.
 
1.Download and run the Appsheet Translate extension
2.Disable automatic Google Translator
3.Select the translation language                    

Podstawowe informacje o rozszerzeniu

Nazwa Appsheet Translate Appsheet Translate
ID beenkcmmckdpbfbdaegofdokmkiciigl
Oficjalny URL https://chromewebstore.google.com/detail/appsheet-translate/beenkcmmckdpbfbdaegofdokmkiciigl
Opis Translate appsheet.com to any language
Rozmiar pliku 47.42 KB
Liczba instalacji 2,390
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-10-03
Data Publikacji 2022-10-03
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper https://aiassistant.online
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://aiassistant.online/appsheettranslator
Adres URL Strony Polityki Prywatności https://docs.google.com/document/d/1yxlp5d8e39a4iGEMuXaakYS9hbMvpoOE4dREpWrVYmg/edit?usp=sharing
Obsługiwane Języki en,fr,es,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Appsheet Translate",
    "version": "1.0",
    "description": "Translate appsheet.com to any language",
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/translate.google.rs\/translate_a\/single"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "popup.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.appsheet.com\/*"
            ],
            "js": [
                "content.js",
                "widget\/widget.js"
            ],
            "css": [
                "widget\/widget.css"
            ]
        }
    ],
    "action": {
        "default_title": "AppsheetTranslator"
    },
    "icons": {
        "128": "icons\/icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.js",
                "widget\/widget.html",
                "widget\/widget.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "inject-script": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "Inject a script on the page"
        }
    }
}