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.…

Smartling GDN String Status란 무엇입니까?

Smartling GDN String Status은(는) szapata427에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website.…"입니다.

확장 프로그램 스크린샷

screenshot

Smartling GDN String Status 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Smartling GDN String Status Smartling GDN String Status
ID pldeonkmadphhlmimajjapkloalcmmef
공식 URL https://chromewebstore.google.com/detail/smartling-gdn-string-stat/pldeonkmadphhlmimajjapkloalcmmef
설명 Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website.…
파일 크기 56.77 KB
설치 횟수 83
현재 버전 4.3
최근 업데이트 2023-09-26
출시 날짜 2021-03-15
평점 5.00/5 총 2 개의 평점
개발자 szapata427
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}