Kurdish Alphabet Converter
Kurdish alphabet conversion between Arabic, Yekgirtú and Bedirxanî alphabets
Kurdish Alphabet Converter란 무엇입니까?
Kurdish Alphabet Converter은(는) Shaho Chwarbaxi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Kurdish alphabet conversion between Arabic, Yekgirtú and Bedirxanî alphabets"입니다.
확장 프로그램 스크린샷
Kurdish Alphabet Converter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | Kurdish Alphabet Converter |
ID | lahppabfpdghmmbogeohopnallnkfnjb |
공식 URL | https://chromewebstore.google.com/detail/kurdish-alphabet-converte/lahppabfpdghmmbogeohopnallnkfnjb |
설명 | Kurdish alphabet conversion between Arabic, Yekgirtú and Bedirxanî alphabets |
파일 크기 | 18.3 KB |
설치 횟수 | 119 |
현재 버전 | 2.2 |
최근 업데이트 | 2022-01-25 |
출시 날짜 | 2020-01-04 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Shaho Chwarbaxi |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } } } } |