Sanskrit to IAST Syllables

Reformat the Sanskrit to IAST with syllables side by side, showing grid layout.

Sanskrit to IAST Syllables란 무엇입니까?

Sanskrit to IAST Syllables은(는) https://unterberger.media에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reformat the Sanskrit to IAST with syllables side by side, showing grid layout."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Sanskrit to IAST Syllables 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This Extension Reformats the Sanskrit and IAST part of Vedic Slokas. 

To use the Extension Turn it on (light green Icon), on by default. 
Open Website https://vedabase.io and select Bhagavat-Gita or Srimad-Bhagavatam. 

At the moment works on vedabase.io, but might be extended to other websites later. 

It can reformat 
* Bhagavad Gita (Englisch) and Srimad Bhagavatam. 
- Set it to "Advanced View," 
- then Turn off Verse-Text and Synonyms

If the Conversion has errors, it might show yellow boxes, 
but most slokas work ok. 

The option "wrap" allows to break lines, 0 shows all syllables in one line or like in original. 
values of 16, 8, 4 work well. 

You can also reformat the page and then print it to PDF . (Landscape View).  

Version 
1.5 - Improved permission settings
1.4 - better Layout and optimizations
1.3 - Now with inline Synonymes (Dictionary) of the word by word translation. can be turned off in options and behaves then similar to version 1.2. - Also updated to new API Manifest 3.                    

확장 프로그램 기본 정보

이름 Sanskrit to IAST Syllables Sanskrit to IAST Syllables
ID beomofifhilfnnanfapjccniiihfelma
공식 URL https://chromewebstore.google.com/detail/sanskrit-to-iast-syllable/beomofifhilfnnanfapjccniiihfelma
설명 Reformat the Sanskrit to IAST with syllables side by side, showing grid layout.
파일 크기 35.71 KB
설치 횟수 79
현재 버전 1.5
최근 업데이트 2023-08-11
출시 날짜 2021-08-22
평점 5.00/5 총 1 개의 평점
개발자 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": "Sanskrit to IAST Syllables",
    "short_name": "sanskrit_to_iast",
    "description": "Reformat the Sanskrit to IAST with syllables side by side, showing grid layout. ",
    "author": "Daniel Unterberger",
    "version": "1.5",
    "manifest_version": 3,
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/vedabase.io\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/vedabase.io\/*"
            ],
            "js": [
                "content.end.js"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/vedabase.io\/*"
    ],
    "action": {
        "name": "Click to toggle Sanskrit2IAST"
    },
    "icons": {
        "16": "icon128.png",
        "48": "icon128.png",
        "128": "icon128.png"
    }
}