Crowdin Open Graphie

Opens Graphie from Crowdin window in Graphie editor

Crowdin Open Graphie क्या है?

Crowdin Open Graphie Khan Academy Internal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens Graphie from Crowdin window in Graphie editor"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Crowdin Open Graphie एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}