Ektajpu: Esperanto Text Converter

Ektajpu: Esperanto Text Converter

Converts the x-system characters into their proper Esperanto characters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "homepage_url": "https://github.com/njensen0604/ektajpu",
  "icons": {
    "16": "icons/iconText16.png",
    "48": "icons/iconText48.png",
    "128": "icons/iconText128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/iconText128.png",
    "default_title": "Ektajpu",
    "default_popup": "browser_action/browser_action.html"
  },
  "permissions": [
    "http://*/*, https://*/*",
    "storage"
  ],
  "author": "Nicholas Jensen",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "inject/EktajpuCheckInput.js",
        "inject/EktajpuMainController.js",
        "inject/EktajpuManageCursor.js",
        "inject/EktajpuMessageWatch.js"
      ]
    }
  ]
}