梦想小说朗读助手

梦想小说朗读助手

一款简单的小说朗读助手,支持数百小说网站自动朗读功能,同时支持右键朗读和划词朗读。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "梦想小说朗读助手",
  "description": "一款简单的小说朗读助手,支持数百小说网站自动朗读功能,同时支持右键朗读和划词朗读。",
  "version": "1.19",
  "manifest_version": 2,
  "icons": {
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "js/common.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/common.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "梦想小说朗读助手",
    "default_icon": "128.png"
  },
  "permissions": [
    "storage",
    "tts",
    "notifications",
    "contextMenus",
    "<all_urls>"
  ],
  "homepage_url": "https://www.mengxiang.net",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+R",
        "mac": "MacCtrl+Shift+R"
      },
      "description": "打开设置"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}