Devangari to IAST Syllables

Reformat the Devanagari to IAST with syllables.

Devangari to IAST Syllables क्या है?

Devangari to IAST Syllables https://unterberger.media द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reformat the Devanagari to IAST with syllables."।

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

screenshot
screenshot
screenshot

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

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