Appsheet Translate

Translate appsheet.com to any language

Wat is Appsheet Translate?

Appsheet Translate is een Chrome-extensie ontwikkeld door https://aiassistant.online, en de belangrijkste functie is "Translate appsheet.com to any language".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Appsheet Translate

Download Appsheet Translate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Appsheet Translate Appsheet Translate
ID beenkcmmckdpbfbdaegofdokmkiciigl
Officiële URL https://chromewebstore.google.com/detail/appsheet-translate/beenkcmmckdpbfbdaegofdokmkiciigl
Beschrijving Translate appsheet.com to any language
Bestandsgrootte 47.42 KB
Aantal Installaties 2,390
Huidige Versie 1.0
Laatst Bijgewerkt 2022-10-03
Publicatiedatum 2022-10-03
Beoordeling 5.00/5 Totaal 10 Beoordelingen
Ontwikkelaar https://aiassistant.online
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://aiassistant.online/appsheettranslator
URL van de Privacybeleid Pagina https://docs.google.com/document/d/1yxlp5d8e39a4iGEMuXaakYS9hbMvpoOE4dREpWrVYmg/edit?usp=sharing
Ondersteunde Talen 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"
        }
    }
}