Appsheet Translate

Translate appsheet.com to any language

什麼是Appsheet Translate?

Appsheet Translate是由https://aiassistant.online開發的Chrome擴展程式,該擴展的主要功能是“Translate appsheet.com to any language”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Appsheet Translate擴展crx文件

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

擴展使用說明

                        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                    

擴展基本資訊

名稱 Appsheet Translate Appsheet Translate
ID beenkcmmckdpbfbdaegofdokmkiciigl
官方網址 https://chromewebstore.google.com/detail/appsheet-translate/beenkcmmckdpbfbdaegofdokmkiciigl
簡介 Translate appsheet.com to any language
檔案大小 47.42 KB
安裝次數 2,390
目前版本 1.0
更新時間 2022-10-03
上架時間 2022-10-03
評分 5.00/5 共 10 次評分
開發者 https://aiassistant.online
電子郵箱 [email protected]
付費類型 free
擴展官網 http://aiassistant.online/appsheettranslator
隱私政策頁面URL https://docs.google.com/document/d/1yxlp5d8e39a4iGEMuXaakYS9hbMvpoOE4dREpWrVYmg/edit?usp=sharing
支援的語言 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"
        }
    }
}