wooSpeech

wooSpeech

一個用於wootalk網頁的擴充程式,當收到新訊息,google小姐會念出來~

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "wooSpeech",
  "version": "0.1.1",
  "description": "一個用於wootalk網頁的擴充程式,當收到新訊息,google小姐會念出來~",
  "icons": {
    "128": "icon/icon128.png"
  },
  "page_action": {
    "default_icon": "icon/icon128.png",
    "default_title": "wooSpeech擴充程式"
  },
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistent": true
  },
  "options_page": "option.html",
  "content_scripts": [
    {
      "matches": [
        "https://wootalk.today/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "html/insert.html",
    "option.html"
  ],
  "permissions": [
    "tabs",
    "tts",
    "storage",
    "https://wootalk.today/*"
  ]
}