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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
}