MUA Web Unicode Converter

MUA Web Unicode Converter

This extension will check web content and convert to Unicode encoded text if they are Zawgyi.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MUA Web Unicode Converter",
  "description": "This extension will check web content and convert to Unicode encoded text if they are Zawgyi.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "version": "1.22",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Click here!"
  },
  "content_scripts": [
    {
      "css": [
        "zawgyi.css"
      ],
      "js": [
        "parabaik.js",
        "converter.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "YoeYar-One.ttf",
    "pyidaungsu-1-3.ttf"
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}