JUSTチェッカー

JUSTチェッカー

JUSTチェッカーは、日本語ワープロソフト「一太郎」の校正エンジンで、日本語文章の文法や文体、表現をリアルタイムにチェックします。ミスや違和感のない自然な文章作成をサポートします。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "ja",
  "name": "__MSG_extension_name__",
  "version": "2.0.0",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "96": "icons/icon96.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "commands": {
    "open-editor": {
      "description": "__MSG_open_editor__",
      "suggested_key": {
        "default": "Alt+O"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "nativeMessaging"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.css",
        "icons/*.png",
        "icons/*.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}