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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}