微信读书笔记助手

一个还不错的微信读书笔记工具,方便你导出书本标注等内容,对常使用 Markdown 做笔记的用户比较有帮助。

What is 微信读书笔记助手?

微信读书笔记助手 is a Chrome extension developed by Liu Hao, and its main feature is "一个还不错的微信读书笔记工具,方便你导出书本标注等内容,对常使用 Markdown 做笔记的用户比较有帮助。".

Extension Screenshots

screenshot
screenshot
screenshot

Download 微信读书笔记助手 Extension CRX File

Download 微信读书笔记助手 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        特性如下:

1. 一键导出标注、想法、目录;
2. 导出格式自定义;
3. 一键复制图片、注释、代码块;
4. 护眼色主题;
5. 标注搜索、标注目录;
6. 借助正则匹配对标注进行处理;
7. 选中后自动标注、自动复制或自动查询;
8. 解除右键限制;
13. 读书页图片、代码块放大。

项目地址:https://github.com/Higurashi-kagome/wereader
问题反馈:
- Github:https://github.com/Higurashi-kagome/wereader/issues/new/choose
- Email:[email protected]                    

Extension Basic Information

Name 微信读书笔记助手 微信读书笔记助手
ID cmlenojlebcodibpdhmklglnbaghpdcg
Official URL https://chromewebstore.google.com/detail/%E5%BE%AE%E4%BF%A1%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0%E5%8A%A9%E6%89%8B/cmlenojlebcodibpdhmklglnbaghpdcg
Description 一个还不错的微信读书笔记工具,方便你导出书本标注等内容,对常使用 Markdown 做笔记的用户比较有帮助。
File Size 674 KB
Installation Count 5,167
Current Version 4.0.0
Last Updated 2024-02-17
Publish Date 2020-07-02
Rating 4.89/5 Total 44 Ratings
Developer Liu Hao
Email [email protected]
Payment Type free
Extension Website https://github.com/Higurashi-kagome/wereader
Help Page URL https://www.cnblogs.com/Higurashi-kagome/p/13092175.html
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "\u5fae\u4fe1\u8bfb\u4e66\u7b14\u8bb0\u52a9\u624b",
    "version": "4.0.0",
    "description": "\u4e00\u4e2a\u8fd8\u4e0d\u9519\u7684\u5fae\u4fe1\u8bfb\u4e66\u7b14\u8bb0\u5de5\u5177\uff0c\u65b9\u4fbf\u4f60\u5bfc\u51fa\u4e66\u672c\u6807\u6ce8\u7b49\u5185\u5bb9\uff0c\u5bf9\u5e38\u4f7f\u7528 Markdown \u505a\u7b14\u8bb0\u7684\u7528\u6237\u6bd4\u8f83\u6709\u5e2e\u52a9\u3002",
    "background": {
        "service_worker": "worker.js"
    },
    "icons": {
        "16": "icons\/extension-icons\/icon16.png",
        "48": "icons\/extension-icons\/icon48.png",
        "128": "icons\/extension-icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/extension-icons\/icon16.png",
            "24": "icons\/extension-icons\/icon24.png",
            "32": "icons\/extension-icons\/icon32.png"
        },
        "default_popup": "popup.html",
        "default_title": "wereader"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/weread.qq.com\/web\/reader\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/static\/css\/theme\/*.css",
                "content\/static\/css\/*.css"
            ],
            "matches": [
                "*:\/\/weread.qq.com\/*"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/github.com\/Higurashi-kagome\/wereader",
    "permissions": [
        "tabs",
        "activeTab",
        "cookies",
        "storage",
        "debugger",
        "contextMenus",
        "webRequest",
        "offscreen",
        "notifications",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/weread.qq.com\/*",
        "*:\/\/i.weread.qq.com\/*"
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    }
}