TeX to Unicode

TeX to Unicode

テキストエリアに入力したTeXライクな文字列を対応するUnicode文字に変換します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TeX to Unicode",
  "version": "0.2.1",
  "description": "テキストエリアに入力したTeXライクな文字列を対応するUnicode文字に変換します。",
  "author": "uhyo",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/bundle.js",
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png"
    },
    "default_title": "TeX to Unicode",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "dist/bundle.js",
      "js/event.js"
    ],
    "persistent": false
  }
}