Devangari to IAST Syllables

Reformat the Devanagari to IAST with syllables.

Devangari to IAST Syllablesคืออะไร?

Devangari to IAST Syllables เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://unterberger.media และคุณลักษณะหลักของมันคือ "Reformat the Devanagari to IAST with syllables."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Devangari to IAST Syllables

ดาวน์โหลดไฟล์ส่วนขยาย Devangari to IAST Syllables ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}