Crowdin Open Graphie

Opens Graphie from Crowdin window in Graphie editor

Crowdin Open Graphie란 무엇입니까?

Crowdin Open Graphie은(는) Khan Academy Internal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens Graphie from Crowdin window in Graphie editor"입니다.

확장 프로그램 스크린샷

screenshot

Crowdin Open Graphie 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This plugin is intended for Khan Academy translators.

It adds a new button in the Crowdin window that automatically opens a Graphie editor at graphie-to-png.kasandbox.org with preloaded Graphie link taken from the current string.
You can also use a keyboard shortcut (Alt+G) instead of the button.

The plugin preferentially takes the graphie link from the translated string. If the translated string is missing or does not contain a graphie link, it will open a graphie link from the original English string. If multiple Graphie links are present, it will open only the first one.                    

확장 프로그램 기본 정보

이름 Crowdin Open Graphie Crowdin Open Graphie
ID kbjhneeomndnpbacddhjonanichjfpha
공식 URL https://chromewebstore.google.com/detail/crowdin-open-graphie/kbjhneeomndnpbacddhjonanichjfpha
설명 Opens Graphie from Crowdin window in Graphie editor
파일 크기 17.79 KB
설치 횟수 103
현재 버전 0.5.0
최근 업데이트 2024-01-22
출시 날짜 2020-04-29
개발자 Khan Academy Internal
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Khan/crowdin-graphie-plugin
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crowdin Open Graphie",
    "description": "Opens Graphie from Crowdin window in Graphie editor",
    "author": "Daniel Hollas",
    "version": "0.5.0",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "open-graphie": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Click 'open-graphie' button"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/crowdin.com\/translate\/khanacademy\/*",
                "https:\/\/crowdin.com\/editor\/khanacademy\/*"
            ],
            "js": [
                "3rdPartyLibs\/zepto.min.js",
                "app.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "khan-logo-new-16.png",
        "48": "khan-logo-new-48.png",
        "128": "khan-logo-new-128.png"
    },
    "manifest_version": 3
}