Spoon comment speech

Spoon comment speech

SpoonラジオのLIVE配信のコメントの読み上げをします。作業中の方など、コメントを読みづらい環境のみなさま、使ってみませんか?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spoon comment speech",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "SpoonラジオのLIVE配信のコメントの読み上げをします。作業中の方など、コメントを読みづらい環境のみなさま、使ってみませんか?",
  "icons": {
    "16": "img/icon/icon16.png",
    "48": "img/icon/icon48.png",
    "128": "img/icon/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/icon/icon16.png",
    "default_title": "Spoon comment speach",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.spooncast.net/jp/live/*"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}