Document preview for Lokalise

See the document during translation and before download

Document preview for Lokalise란 무엇입니까?

Document preview for Lokalise은(는) Aleksander Terekhov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See the document during translation and before download"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Document preview for Lokalise 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        HTML documents preview within Lokalise for translators, editors and managers.

See the document during translation and before download  with a free open-sourced browser extension.

Features:
— Interactive preview of translations within the layout,
— Edit HTML attributes without searching for them or breaking code,
— Check translated documents before download.                    

확장 프로그램 기본 정보

이름 Document preview for Lokalise Document preview for Lokalise
ID egnkinnacilaeckhljnbkaeahioacgba
공식 URL https://chromewebstore.google.com/detail/document-preview-for-loka/egnkinnacilaeckhljnbkaeahioacgba
설명 See the document during translation and before download
파일 크기 23.81 KB
설치 횟수 222
현재 버전 4.1.1
최근 업데이트 2022-08-03
출시 날짜 2021-02-12
평점 5.00/5 총 2 개의 평점
개발자 Aleksander Terekhov
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://lokalise-document-preview.terales.info/
도움말 페이지 URL https://github.com/terales/lokalise-html-document-preview/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Document preview for Lokalise",
    "version": "4.1.1",
    "description": "See the document during translation and before download",
    "homepage_url": "https:\/\/github.com\/terales\/lokalise-html-document-preview",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.lokalise.com\/download\/download-preview"
            ],
            "js": [
                "download_preview_content_script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/app.lokalise.com\/project\/*view=document*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "editor_inject_inline_scripts_content_script.js",
                "editor_live_preview_content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "editor_sync_codemirror_with_dom_inline_script.js",
                "editor_add_attributes_form_inline_script.js"
            ],
            "matches": [
                "https:\/\/app.lokalise.com\/*"
            ]
        }
    ],
    "minimum_chrome_version": "88",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    }
}