Document preview for Lokalise

See the document during translation and before download

O que é Document preview for Lokalise?

Document preview for Lokalise é uma extensão do Chrome desenvolvida por Aleksander Terekhov, e sua principal característica é "See the document during translation and before download".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Document preview for Lokalise

Baixe arquivos de extensão Document preview for Lokalise no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Document preview for Lokalise Document preview for Lokalise
ID egnkinnacilaeckhljnbkaeahioacgba
URL Oficial https://chromewebstore.google.com/detail/document-preview-for-loka/egnkinnacilaeckhljnbkaeahioacgba
Descrição See the document during translation and before download
Tamanho do Arquivo 23.81 KB
Contagem de Instalações 222
Versão Atual 4.1.1
Última Atualização 2022-08-03
Data de Publicação 2021-02-12
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Aleksander Terekhov
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://lokalise-document-preview.terales.info/
URL da Página de Ajuda https://github.com/terales/lokalise-html-document-preview/issues
Idiomas Suportados 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"
    }
}