Crowdin Open Graphie

Opens Graphie from Crowdin window in Graphie editor

ما هو Crowdin Open Graphie؟

Crowdin Open Graphie هو إضافة Chrome تم تطويرها بواسطة Khan Academy Internal، والميزة الرئيسية لها هي "Opens Graphie from Crowdin window in Graphie editor".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Crowdin Open Graphie

قم بتنزيل ملفات الامتداد Crowdin Open Graphie بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
}