音読さん

音読さん

音読さん用音声読み上げ拡張機能です。この拡張機能を追加すると範囲指定した文章を音読さんで読み上げられるようになります。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "音読さん",
  "short_name": "Ondoku3",
  "version": "23.10.03",
  "description": "音読さん用音声読み上げ拡張機能です。この拡張機能を追加すると範囲指定した文章を音読さんで読み上げられるようになります。",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": "icons/32.png",
    "default_title": "Ondoku3",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "offscreen"
  ],
  "host_permissions": [
    "https://ondoku3.com/"
  ],
  "content_security_policy": {
    "content_security_policy": "default-src *; media-src *;"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/contents.js",
        "offscreen.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+O",
        "mac": "Command+Shift+O",
        "chromeos": "Ctrl+Shift+O",
        "linux": "Ctrl+Shift+O"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  }
}