一款简单的小说朗读助手,支持数百小说网站自动朗读功能,同时支持右键朗读和划词朗读。
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}