Smartling GDN String Status

Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website.…

Was ist Smartling GDN String Status?

Smartling GDN String Status ist eine Chrome-Erweiterung, die von szapata427 entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website.…".

Erweiterungsscreenshots

screenshot

Smartling GDN String Status-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smartling GDN String Status-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

                        Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website. Smartling is a translation/localization technology company. This will help many clients easily be able to identify the translation status of a string for each page in which they are using Smartlings GDN proxy. It will also allow them to directly visit the string in the Smartling dashboard to make any changes needed on the spot. This is extension must be used in ?smartling_editmode=1 within the Url.

 E.g. https://smartling.com?smartling_editmode=1                    

Grundlegende Informationen zur Erweiterung

Name Smartling GDN String Status Smartling GDN String Status
ID pldeonkmadphhlmimajjapkloalcmmef
Offizielle URL https://chromewebstore.google.com/detail/smartling-gdn-string-stat/pldeonkmadphhlmimajjapkloalcmmef
Beschreibung Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website.…
Dateigröße 56.77 KB
Installationsanzahl 83
Aktuelle Version 4.3
Letztes Update 2023-09-26
Veröffentlichungsdatum 2021-03-15
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler szapata427
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Smartling GDN String Status",
    "version": "4.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js",
                "extensionStyles.css",
                "popup.js"
            ]
        }
    ],
    "action": {
        "default_icon": "smartling.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; script-src 'self'; style-src 'self' https:\/\/fonts.googleapis.com 'unsafe-inline'; font-src 'self' data: https:\/\/fonts.gstatic.com; img-src 'self' data:;"
    },
    "background": {
        "service_worker": "background.js",
        "worker_ui": "popup.html"
    }
}