Devangari to IAST Syllables
Reformat the Devanagari to IAST with syllables.
Devangari to IAST Syllables란 무엇입니까?
Devangari to IAST Syllables은(는) https://unterberger.media에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reformat the Devanagari to IAST with syllables."입니다.
확장 프로그램 스크린샷
Devangari to IAST Syllables 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Extension Reformats the Devanagari and IAST part of Vedic Slokas. To use the extension click on the icon (you might need to pin the icon in chrome). The extension waits idle in the background. when you want to convert devanagari/sanskrit/hindi symbols/letters into IAST click the icon in the toolbar. Clicking the icon again will reload the page and show the original devanagari again. For example open Website https://vedabase.io and select Bhagavat-Gita or Srimad-Bhagavatam. It can reformat * Bhagavat Gita (Englisch) and Srimad Bhagavatam. - Set it to "Advanced View," - activate "Devanagari" - then Turn off Verse-Text and Synonyms as you like. This extension works on most pages which have devanagari letters, some hindi might not be perfect display. but some future updates will fix this. it works perfect with sanskrit. The badge icon shows the number of replaces characters. when there are no devanagari letters the extension will not change the page, but it might display small changes of whitespace during the conversion. Changes: v1.2 : Optimized Permissions v1.1 : Upgrade to Manifest v3 v1.0 : initial version
확장 프로그램 기본 정보
이름 | Devangari to IAST Syllables |
ID | fledhdfgbbgpbedidapdjcgdganilkne |
공식 URL | https://chromewebstore.google.com/detail/devangari-to-iast-syllabl/fledhdfgbbgpbedidapdjcgdganilkne |
설명 | Reformat the Devanagari to IAST with syllables. |
파일 크기 | 31.88 KB |
설치 횟수 | 33 |
현재 버전 | 1.2 |
최근 업데이트 | 2023-08-11 |
출시 날짜 | 2021-10-11 |
개발자 | https://unterberger.media |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://unterberger.media |
도움말 페이지 URL | https://unterberger.media/contact |
개인정보 보호 정책 페이지 URL | https://unterberger.media/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devangari to IAST Syllables", "short_name": "devanagari_to_iast", "description": "Reformat the Devanagari to IAST with syllables. ", "author": "Daniel Unterberger", "version": "1.2", "manifest_version": 3, "options_page": "options.html", "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": false }, { "run_at": "document_end", "matches": [ "https:\/\/*\/*" ], "js": [ "content.end.js" ], "all_frames": false } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*\/*" ], "action": { "name": "Click to convert Devangari to IAST " }, "icons": { "16": "icon128.png", "48": "icon128.png", "128": "icon128.png" } } |