Kurdish Alphabet Converter
Kurdish alphabet conversion between Arabic, Yekgirtú and Bedirxanî alphabets
Kurdish Alphabet Converter là gì?
Kurdish Alphabet Converter là một tiện ích mở rộng Chrome được phát triển bởi Shaho Chwarbaxi, và tính năng chính của nó là "Kurdish alphabet conversion between Arabic, Yekgirtú and Bedirxanî alphabets".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Kurdish Alphabet Converter
Tải xuống các tệp mở rộng Kurdish Alphabet Converter 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
How to use the Kurdish Alphabet Converter Converts text written in different Kurdish scripts between Latin-based: Yekgirtú, Bedirxanî and Arabic alphabets. Can be used in almost any website written in Kurdish. Tip! (Not mandatory) The Kurdish Alphabet Converter can now be used with keyboard shortcuts - In your adress bar enter: "chrome://extensions" - Scroll to the bottom of your extensions list and select "Shortcuts" in the right lower corner - Select Kurdish Alphabet Converter and insert your desired shortcut i.e Ctrl-Shift-Y (cmd on mac) and click ok Now when you are on a page and want to convert, simply press your previously entered shortcut and when popup is open press the following: "Y" for Sorani to Yekgirtu, "B" for Sorani to Bedirxani "U" for Bedirxani to Yekgirtu "S" for Bedirxani to Sorani Enjoy!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Kurdish Alphabet Converter |
ID | lahppabfpdghmmbogeohopnallnkfnjb |
URL Chính Thức | https://chromewebstore.google.com/detail/kurdish-alphabet-converte/lahppabfpdghmmbogeohopnallnkfnjb |
Mô tả | Kurdish alphabet conversion between Arabic, Yekgirtú and Bedirxanî alphabets |
Kích Thước Tệp | 18.3 KB |
Số Lần Cài Đặt | 119 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2022-01-25 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Shaho Chwarbaxi |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Kurdish Alphabet Converter", "description": "Kurdish alphabet conversion between Arabic, Yekgirt\u00fa and Bedirxan\u00ee alphabets", "version": "2.2", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Change text on this page", "default_icon": "logo.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "convertYek.js", "convertBedr.js", "convertBtoY.js" ] } ], "icons": { "128": "logo_large.png", "16": "logo.png", "48": "logo.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" } } } } |