Cyrillatin

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

Cyrillatin là gì?

Cyrillatin là một tiện ích mở rộng Chrome được phát triển bởi Gavin Clonts, và tính năng chính của nó là "Allows conversion of latin phonics to cyrillic characters and vice versa.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cyrillatin

Tải xuống các tệp mở rộng Cyrillatin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cyrillatin Cyrillatin
ID bhbiedjjjdgklakkpajhpbpmjbjcjnij
URL Chính Thức https://chromewebstore.google.com/detail/cyrillatin/bhbiedjjjdgklakkpajhpbpmjbjcjnij
Mô tả Allows conversion of latin phonics to cyrillic characters and vice versa.
Kích Thước Tệp 87.66 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.31
Cập Nhật Lần Cuối 2023-04-04
Ngày Phát Hành 2023-03-14
Nhà Phát Triển Gavin Clonts
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Gavin-TC/Cyrillatin
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}