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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reformat the Sanskrit to IAST with syllables side by side, showing grid layout."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sanskrit to IAST Syllables एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}