Cyrillatin

Allows conversion of latin phonics to cyrillic characters and vice versa.

Was ist Cyrillatin?

Cyrillatin ist eine Chrome-Erweiterung, die von Gavin Clonts entwickelt wurde, und ihr Hauptmerkmal ist "Allows conversion of latin phonics to cyrillic characters and vice versa.".

Erweiterungsscreenshots

screenshot
screenshot

Cyrillatin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cyrillatin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Cyrillatin is a Google Chrome extension that allows the conversion of phonics from the Latin alphabet into Russian Cyrillic on nearly any website. This makes it easy for people learning Russian to type in Cyrillic without having to learn the Cyrillic keyboard layout.

Just type phonics onto nearly any input field on a website, select the text, right-click, hover over "Cyrillatin" and click on "Covert to Cyrillic." 

As for converting back to Latin phonics, just select your text, right-click, hover over "Cyrillatin" and click on "Convert to Latin."

It's also completely open-source, check it out here: https://github.com/Gavin-TC/Cyrillatin                    

Grundlegende Informationen zur Erweiterung

Name Cyrillatin Cyrillatin
ID bhbiedjjjdgklakkpajhpbpmjbjcjnij
Offizielle URL https://chromewebstore.google.com/detail/cyrillatin/bhbiedjjjdgklakkpajhpbpmjbjcjnij
Beschreibung Allows conversion of latin phonics to cyrillic characters and vice versa.
Dateigröße 87.66 KB
Installationsanzahl 29
Aktuelle Version 1.31
Letztes Update 2023-04-04
Veröffentlichungsdatum 2023-03-14
Entwickler Gavin Clonts
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Gavin-TC/Cyrillatin
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cyrillatin",
    "description": "Allows conversion of latin phonics to cyrillic characters and vice versa.",
    "version": "1.31",
    "icons": {
        "16": "icons\/logo2_16.png",
        "48": "icons\/logo2_48.png",
        "128": "icons\/logo2_128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Cyrillatin"
    }
}