Devangari to IAST Syllables

Devangari to IAST Syllables

Reformat the Devanagari to IAST with syllables.

Merlin
Additional files are visible only to premium users

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