KISS4V_chrome拡張

KISS4V_chrome拡張

KISS4Vを使ってWebページを読み上げる拡張機能です。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KISS4V_chrome拡張",
  "short_name": "KISS4V",
  "description": "KISS4Vを使ってWebページを読み上げる拡張機能です。",
  "author": "ビス",
  "version": "1.1.0",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "lib/axios.min.js",
      "js/voiceroid.js",
      "js/background.js"
    ],
    "presistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/axios.min.js",
        "js/voiceroid.js",
        "js/content.js"
      ]
    }
  ],
  "commands": {
    "play_page": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "ページを読み上げる"
    },
    "play_range": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "選択範囲を読み上げる"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "読み上げの停止"
    }
  },
  "options_page": "html/option.html"
}