Document preview for Lokalise

See the document during translation and before download

Was ist Document preview for Lokalise?

Document preview for Lokalise ist eine Chrome-Erweiterung, die von Aleksander Terekhov entwickelt wurde, und ihr Hauptmerkmal ist "See the document during translation and before download".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Document preview for Lokalise-Erweiterungs-CRX-Datei herunterladen

Laden Sie Document preview for Lokalise-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Document preview for Lokalise Document preview for Lokalise
ID egnkinnacilaeckhljnbkaeahioacgba
Offizielle URL https://chromewebstore.google.com/detail/document-preview-for-loka/egnkinnacilaeckhljnbkaeahioacgba
Beschreibung See the document during translation and before download
Dateigröße 23.81 KB
Installationsanzahl 222
Aktuelle Version 4.1.1
Letztes Update 2022-08-03
Veröffentlichungsdatum 2021-02-12
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Aleksander Terekhov
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://lokalise-document-preview.terales.info/
Hilfeseite URL https://github.com/terales/lokalise-html-document-preview/issues
Unterstützte Sprachen 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"
    }
}