weread-helper
同步微信读书中书籍元信息、高亮标注、划线感想、书评等至语雀
什么是weread-helper?
weread-helper是由gaopeng19960108开发的Chrome扩展程序,该扩展的主要功能是“同步微信读书中书籍元信息、高亮标注、划线感想、书评等至语雀”。
扩展截图
下载weread-helper扩展crx文件
下载weread-helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
同步微信读书中书籍元信息、高亮标注、划线感想、书评等至语雀 扩展基本信息
| 名称 | |
| ID | jmcpabhmafdjaicnjbbogpdknkenidkh |
| 官方URL | https://chromewebstore.google.com/detail/weread-helper/jmcpabhmafdjaicnjbbogpdknkenidkh |
| 简介 | 同步微信读书中书籍元信息、高亮标注、划线感想、书评等至语雀 |
| 文件大小 | 329 KB |
| 安装次数 | 57 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-02-22 |
| 上架时间 | 2023-02-21 |
| 开发者 | gaopeng19960108 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "weread-helper",
"version": "1.0.0",
"description": "\u540c\u6b65\u5fae\u4fe1\u8bfb\u4e66\u4e2d\u4e66\u7c4d\u5143\u4fe1\u606f\u3001\u9ad8\u4eae\u6807\u6ce8\u3001\u5212\u7ebf\u611f\u60f3\u3001\u4e66\u8bc4\u7b49\u81f3\u8bed\u96c0",
"background": {
"service_worker": "src\/pages\/background\/index.js",
"type": "module"
},
"action": {
"default_popup": "src\/pages\/popup\/index.html",
"default_icon": "icon-32.png"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/weread.qq.com\/*"
],
"js": [
"src\/pages\/content\/index.js"
]
}
],
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"https:\/\/i.weread.qq.com\/*",
"https:\/\/weread.qq.com\/*",
"https:\/\/www.yuque.com\/api\/v2\/*"
],
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/css\/*.css",
"icon-128.png",
"icon-32.png"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"sandbox": {
"pages": [
"src\/pages\/sandbox\/index.html"
]
}
} | |