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文件

下载Crowdin Open Graphie扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}