e-typing plus

e-typing plus

e-typing の非公式 Chrome 拡張です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "e-typing の非公式 Chrome 拡張です。",
  "version": "1.7.3",
  "name": "e-typing plus",
  "manifest_version": 2,
  "author": "yada",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.e-typing.ne.jp/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "jquery.js",
    "app.bundle.js",
    "expanded.bundle.js"
  ],
  "icons": {
    "128": "e128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}